summaryrefslogtreecommitdiff
path: root/makefiles/nmake
diff options
context:
space:
mode:
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)