diff options
author | David Robillard <d@drobilla.net> | 2013-02-03 02:43:47 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2013-02-03 02:43:47 +0000 |
commit | 9ea596c13c1be7718189dae2eebc7e1e0ee390a5 (patch) | |
tree | 39709a563b4aea0883424f4836096d6fa4e43b9b | |
parent | b405b793ef2487dbf3fa22e124818b3d37f165f9 (diff) | |
download | ingen-9ea596c13c1be7718189dae2eebc7e1e0ee390a5.tar.gz ingen-9ea596c13c1be7718189dae2eebc7e1e0ee390a5.tar.bz2 ingen-9ea596c13c1be7718189dae2eebc7e1e0ee390a5.zip |
Check for c++0x compiler flag before adding to environment.
This should fix the partial group build on systems which don't support c++0x.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5036 a436a847-0d15-0410-975c-d299462d15a1
-rw-r--r-- | wscript | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -35,6 +35,8 @@ def configure(conf): conf.load('compiler_cxx') conf.load('python') autowaf.configure(conf) + + conf.check_cxx(cxxflags=["-std=c++0x"]) conf.env.append_unique('CXXFLAGS', ['-std=c++0x']) autowaf.display_header('Ingen Configuration') |