MinGW binding problem

I have a communication 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.ais located in this directory. Why does the linker not find the library?

+3
source share
2 answers

I think the linker command should be -lws2_32. "Lib" and ".a" are filled in automatically.

+6
source

Are you sure you are using -llibws2_32? liband are .aautomatically added by the linker.

Try it instead -lws2_32. My version ldworks with this:

pax@daemonspawn> ld -llibm
ld: cannot find -llibm

pax@daemonspawn> ld -lm
ld: warning: cannot find entry symbol _start; not setting start address
+1
source

Source: https://habr.com/ru/post/1714658/


All Articles