我正在尝试在我的项目中使用open mp。 我有这样的代码:
#pragma omp for
for (i = 0; i < 16; i++) {
resBuf[i] = buf1[i] ^ buf2[i];
}
我在文件的开头包含了<omp.h.>
。
我还尝试在makefile中使用不同的标志及其组合:
FLAGS = -Wall -g -fopenmp -lgomp -fgomp
CC = gcc
仍然无效。有以下问题:
undefined reference to `omp_get_num_threads'
undefined reference to `omp_get_thread_num'
undefined reference to `GOMP_barrier'
你能帮助我吗?
答案 0 :(得分:3)
只需在gcc命令行上使用-fopenmp即可:https://www.dartmouth.edu/~rc/classes/intro_openmp
我猜你的项目有单独的编译和链接步骤,并且链接命令行中缺少-fopenmp。如果您的makefile没有LDFLAGS行或者在该行中添加-fopenmp,请尝试添加行LDFLAGS = -fopenmp。