diff options
author | Tobias Markmann <tm@ayena.de> | 2015-04-29 18:06:24 (GMT) |
---|---|---|
committer | Tobias Markmann <tm@ayena.de> | 2015-04-29 18:06:24 (GMT) |
commit | 1e5ca0c1fe156cd614cfbfce432c40eeadb893fd (patch) | |
tree | 316ead0922410acd7866b802577ac9b24725f201 /BuildTools/SCons/SConstruct | |
parent | 68263f7cb360ae52915017df202775665c4eeeb6 (diff) | |
download | swift-1e5ca0c1fe156cd614cfbfce432c40eeadb893fd.zip swift-1e5ca0c1fe156cd614cfbfce432c40eeadb893fd.tar.bz2 |
Ignore compiler warnings from 3rdParty libraries
When compiling with Clang or GCC, include 3rdParty libraries as system
headers and frameworks (-isystem and -f).
Test-Information:
Tested with Clang on OS X.
Change-Id: I184221ddc4b34d30ee6ba66e202953619b5afd56
Diffstat (limited to 'BuildTools/SCons/SConstruct')
-rw-r--r-- | BuildTools/SCons/SConstruct | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/BuildTools/SCons/SConstruct b/BuildTools/SCons/SConstruct index d314ff3..6813747 100644 --- a/BuildTools/SCons/SConstruct +++ b/BuildTools/SCons/SConstruct @@ -297,7 +297,11 @@ if env.get("try_libxml", True) and not env.get("HAVE_LIBXML", 0) : if conf.CheckCHeader("libxml/parser.h") and conf.CheckLib("xml2") : # and conf.CheckVersion("LibXML", "2.6.23", "LIBXML_VERSION", "libxml/xmlversion.h", 20623): env["HAVE_LIBXML"] = 1 - env["LIBXML_FLAGS"] = { "CPPPATH": ["/usr/include/libxml2"], "LIBS": ["xml2"] } + libxml_env.Append() + if env["CC"] in ("clang", "gcc"): + env["LIBXML_FLAGS"] = { "CXXFLAGS": ["-isystem/usr/include/libxml2"], "LIBS": ["xml2"] } + else: + env["LIBXML_FLAGS"] = { "CPPPATH": ["/usr/include/libxml2"], "LIBS": ["xml2"] } conf.Finish() # Expat |