summaryrefslogtreecommitdiff
path: root/makefiles/nmake
diff options
context:
space:
mode:
authorAndreas Baumann <abaumann@yahoo.com>2009-02-28 15:11:08 +0100
committerAndreas Baumann <abaumann@yahoo.com>2009-02-28 15:11:08 +0100
commit94e643e4b06c66f01e7ddaab9215b5e78413adad (patch)
tree6238f4920e8032d866adf250fb11497ba92a07b8 /makefiles/nmake
parentfc2bfb1089218b8d1e57d331a447af92ab44f8a0 (diff)
downloadwolfbones-94e643e4b06c66f01e7ddaab9215b5e78413adad.tar.gz
wolfbones-94e643e4b06c66f01e7ddaab9215b5e78413adad.tar.bz2
localtime_r on native Windows
Diffstat (limited to 'makefiles/nmake')
-rw-r--r--makefiles/nmake/compiler.mk4
1 files changed, 3 insertions, 1 deletions
diff --git a/makefiles/nmake/compiler.mk b/makefiles/nmake/compiler.mk
index 789ec2a..c21b222 100644
--- a/makefiles/nmake/compiler.mk
+++ b/makefiles/nmake/compiler.mk
@@ -12,10 +12,12 @@
#
# TODO: which flags to enable?
+# /nologo: disable MS disclaimer
+# /MT: create a multi-thread binary
# /EHsc: enable C++ exception handling
# compilation flags and compilers
-COMMON_COMPILE_FLAGS = /MD /nologo /c $(INCLUDE_DIRS)
+COMMON_COMPILE_FLAGS = /MT /nologo /c $(INCLUDE_DIRS)
COMPILE_FLAGS = $(COMMON_COMPILE_FLAGS)