diff options
author | David Robillard <d@drobilla.net> | 2013-01-11 03:35:17 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2013-01-11 03:35:17 +0000 |
commit | f8aa3ee7621758b35ba52a5b17972fa4144710ae (patch) | |
tree | 2bf934c558b5c97f858be03101fa1544ecf6835d /wscript | |
parent | 77d36f84343baa0864e742834be15c0296dc4389 (diff) | |
download | raul-f8aa3ee7621758b35ba52a5b17972fa4144710ae.tar.gz raul-f8aa3ee7621758b35ba52a5b17972fa4144710ae.tar.bz2 raul-f8aa3ee7621758b35ba52a5b17972fa4144710ae.zip |
Use C++11 atomics.
git-svn-id: http://svn.drobilla.net/lad/trunk/raul@4916 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'wscript')
-rw-r--r-- | wscript | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -43,6 +43,7 @@ def options(opt): def configure(conf): conf.load('compiler_cxx') autowaf.configure(conf) + conf.env.append_unique('CXXFLAGS', ['-std=c++11']) conf.line_just = 40 autowaf.display_header('Raul Configuration') @@ -76,7 +77,6 @@ def configure(conf): tests = ''' test/atom_test - test/atomic_test test/double_buffer_test test/path_test test/ptr_test |