Snap7 Undefined Reference to TS7Client::TS7Client()
-
Hmm I have looked in Makefile and I encounter this line,
LIBS = -L"$(MINGW)/lib" -static-libgcc --no-export-all-symbols --add-stdcall-alias $(MINGW)/lib/libws2_32.a $(MINGW)/lib/libwinmm.a $(MINGW)/lib/gcc/mingw32/$(MINREL)/libstdc++.a
INCS = -I"$(MINGW)/include" -I"../../../src/sys" -I"../../../src/core" -I"../../../src/lib"Previously I realised , there is no files in mingw32 5.3.0 but libstdc++ is available
Also existing a this writing in webside, "Libstdc++ are statically linked, so you don’t need to distribute them with your software" I suppose it means that.
I do not have enough knowledge. -
Hmm I have looked in Makefile and I encounter this line,
LIBS = -L"$(MINGW)/lib" -static-libgcc --no-export-all-symbols --add-stdcall-alias $(MINGW)/lib/libws2_32.a $(MINGW)/lib/libwinmm.a $(MINGW)/lib/gcc/mingw32/$(MINREL)/libstdc++.a
INCS = -I"$(MINGW)/include" -I"../../../src/sys" -I"../../../src/core" -I"../../../src/lib"Previously I realised , there is no files in mingw32 5.3.0 but libstdc++ is available
Also existing a this writing in webside, "Libstdc++ are statically linked, so you don’t need to distribute them with your software" I suppose it means that.
I do not have enough knowledge.Hi
Statically linked means it is put inside and hence requires no DLL to
be included with the app.