summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRemko Tronçon <git@el-tramo.be>2011-04-28 21:24:11 (GMT)
committerRemko Tronçon <git@el-tramo.be>2011-04-28 21:24:11 (GMT)
commit2fd37feef699b3059ba929a8f63b5e9d22fec763 (patch)
tree65397aeba1d592e75b79119e5bbd2db0f1219a3a
parentfd38ec5082c3dd627fd17c6bad411e800b482017 (diff)
downloadswift-2fd37feef699b3059ba929a8f63b5e9d22fec763.zip
swift-2fd37feef699b3059ba929a8f63b5e9d22fec763.tar.bz2
Disable building of EchoBot example on non-Windows platforms.
-rw-r--r--Documentation/SwiftenDevelopersGuide/Examples/EchoBot/SConscript10
1 files changed, 6 insertions, 4 deletions
diff --git a/Documentation/SwiftenDevelopersGuide/Examples/EchoBot/SConscript b/Documentation/SwiftenDevelopersGuide/Examples/EchoBot/SConscript
index 036b29d..1960609 100644
--- a/Documentation/SwiftenDevelopersGuide/Examples/EchoBot/SConscript
+++ b/Documentation/SwiftenDevelopersGuide/Examples/EchoBot/SConscript
@@ -15,9 +15,11 @@ if env["PLATFORM"] == "win32" :
if int(env["MSVS_VERSION"].split(".")[0]) >= 10 :
cpp0x = True
else :
- if env["CCVERSION"].split(".") >= ["4", "5", "0"] :
- cpp0x = True
- cpp0x_env.Replace(CXXFLAGS = [flag for flag in env["CXXFLAGS"] if flag != "-Werror"])
- cpp0x_env.Append(CXXFLAGS = ["-std=c++0x"])
+ pass
+# Disabling C++0x compilation, because older boosts are not compliant yet
+# if env["CCVERSION"].split(".") >= ["4", "5", "0"] :
+# cpp0x = True
+# cpp0x_env.Replace(CXXFLAGS = [flag for flag in env["CXXFLAGS"] if flag != "-Werror"])
+# cpp0x_env.Append(CXXFLAGS = ["-std=c++0x"])
if cpp0x :
cpp0x_env.Program("EchoBot0x", "EchoBot0x.cpp")