我如何用openmp编译C ++? (在Windows 10中使用g ++)

时间:2018-09-13 14:55:07

标签: c++ compilation g++ openmp

我是C ++编程的新手。 openMP中的新功能。 我有这个简单的代码

#include <stdio.h>
#include <omp.h>

int main(int argc, char const *argv[])
{
    #pragma omp parallel
    printf("This is thread %d out of %d\n", omp_get_thread_num(), omp_get_num_threads());
    return 0;
}

当我尝试使用

进行编译时
g++ -fopenmp file_name.cpp

在cmd中,我收到此错误

c:/mingw/bin/../lib/gcc/mingw32/6.3.0/../../../../mingw32/bin/ld.exe: cannot 
find -lpthread collect2.exe: error: ld returned 1 exit status

我使用Windows 10,gcc版本为6.3.0。 我怎样才能解决这个问题? 谢谢

1 个答案:

答案 0 :(得分:0)

对于MinGW32,This会有所帮助。

或者您可以使用TDM-GCC。您可以下载完整的TDM-GCC安装程序,并确保在安装时启用openmp支持。包也可以,例如 gcc-5.1.0-tdm64-1-core.zip ,其中将 gcc-5.1.0-tdm64-1-openmp.zip 提取到相同的位置文件夹。