good enough fix #652
This commit is contained in:
parent
70a4d25e0b
commit
5b5f4e124b
|
@ -237,7 +237,13 @@ DINCDIR =
|
||||||
DLIBDIR =
|
DLIBDIR =
|
||||||
|
|
||||||
# List all default libraries here
|
# List all default libraries here
|
||||||
DLIBS = -static-libgcc -static -static-libstdc++
|
ifeq ($(OS),Windows_NT)
|
||||||
|
# Windows
|
||||||
|
DLIBS = -static-libgcc -static -static-libstdc++
|
||||||
|
else
|
||||||
|
# Linux
|
||||||
|
DLIBS = -pthread
|
||||||
|
endif
|
||||||
|
|
||||||
#
|
#
|
||||||
# End of default section
|
# End of default section
|
||||||
|
|
Loading…
Reference in New Issue