Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

MinGW linking problem

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?

like image 683
Tobias Langner Avatar asked Apr 19 '26 08:04

Tobias Langner


1 Answers

I think the linker command should be -lws2_32. The "lib" and ".a" is filled in automatically.

like image 56
Soo Wei Tan Avatar answered Apr 21 '26 22:04

Soo Wei Tan



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!