summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRemko Tronçon <git@el-tramo.be>2009-11-21 20:27:49 (GMT)
committerRemko Tronçon <git@el-tramo.be>2009-11-21 20:27:49 (GMT)
commit8f271762f67192c6eba56ee135f77ba8643e3db6 (patch)
tree8995d21f9e46546efa949d5d7c96b99177a08855 /SConstruct
parent3bcabdb3c42ae66b615dfe611ec117695709dd8c (diff)
downloadswift-8f271762f67192c6eba56ee135f77ba8643e3db6.zip
swift-8f271762f67192c6eba56ee135f77ba8643e3db6.tar.bz2
Tweaking compilation flags on Windows.
Use /nologo and /subsystem:windows.
Diffstat (limited to 'SConstruct')
-rw-r--r--SConstruct2
1 files changed, 1 insertions, 1 deletions
diff --git a/SConstruct b/SConstruct
index 1559e0a..0fa9a58 100644
--- a/SConstruct
+++ b/SConstruct
@@ -90,7 +90,7 @@ if env.get("coverage", 0) :
if env["PLATFORM"] == "win32" :
env.Append(LIBS = ["dnsapi", "ws2_32", "wsock32"])
- env.Append(CCFLAGS = "/EHsc")
+ env.Append(CCFLAGS = ["/EHsc", "/nologo"])
env["LINKCOM"] = [env["LINKCOM"], 'mt.exe -nologo -manifest ${TARGET}.manifest -outputresource:$TARGET;1']
env["SHLINKCOM"] = [env["SHLINKCOM"], 'mt.exe -nologo -manifest ${TARGET}.manifest -outputresource:$TARGET;2']