MinGW linking problem
Posted
by Tobias Langner
on Stack Overflow
See other posts from Stack Overflow
or by Tobias Langner
Published on 2009-08-08T06:28:34Z
Indexed on
2010/05/03
8:48 UTC
Read the original article
Hit count: 313
I have a linking problem with MinGW. These are the calls:
g++ -enable-stdcall-fixup -Wl,-enable-auto-import
-Wl,-enable-runtime-pseudo-reloc -mthreads -Wl -Wl,-subsystem,windows
-o debug/Simulation.exe debug/LTNetSender.o debug/main.o debug/simulation.o
debug/moc_simulation.o -L'c:/Programmieren/Qt/4.5.2/lib' -lmingw32
-lqtmaind -LC:\Programmieren\Qt\boost_1_39_0\distrib\lib
-LC:\Programmieren\MinGW\lib -llibboost_system-mgw34-mt -llibws2_32
-lQtSqld4 -lQtGuid4 -lQtNetworkd4 -lQtCored4
C:\Programmieren\MinGW\bin\..\lib\gcc\mingw32\3.4.5\..\..\..\..\mingw32\bin\
ld.exe: cannot find -llibws2_32
The MinGW library directory is included in the library path and libws2_32.a
is in this directory. Why isn't the linker finding the library?
© Stack Overflow or respective owner