good enough fix #652

This commit is contained in:
rusefi 2019-01-08 23:07:00 -05:00
parent 70a4d25e0b
commit 5b5f4e124b
1 changed files with 7 additions and 1 deletions

View File

@ -237,7 +237,13 @@ DINCDIR =
DLIBDIR =
# 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