Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

g++: error: libgomp.spec: No such file or directory

Tags:

c++

gcc

openmp

I use g++ (GCC) 4.7.2. on Windows 7, 64-bit version.

downloaded from http://nuwen.net/mingw.html

I tried to use the "-fopenmp" flag and got the error:

g++: error: libgomp.spec: No such file or directory

I can't find the file anywhere on my system. Do I need to re-install something? Can I just throw a file somewhere?

like image 409
MrP Avatar asked Nov 12 '22 03:11

MrP


1 Answers

You could try installing TDM-GCC, which looks as though it includes OpenMP.

There's also Sezero's personal build.

like image 150
Richard Avatar answered Nov 15 '22 04:11

Richard