diff options
author | Jason Evans <jasone@canonware.com> | 2017-05-11 13:56:41 -0700 |
---|---|---|
committer | Jason Evans <jasone@canonware.com> | 2017-05-11 22:11:35 -0700 |
commit | 17ddddee10c85dec0765a8329fc466c48c8c0592 (patch) | |
tree | bd20475dd1985f0c83f2b961828f92ea22ef9087 /scripts | |
parent | 81ef365622c52d9252f546061652b0b31513c0b7 (diff) |
Specify -Werror for run_tests builds.
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/gen_run_tests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/gen_run_tests.py b/scripts/gen_run_tests.py index 9e46ba90..0446c65c 100755 --- a/scripts/gen_run_tests.py +++ b/scripts/gen_run_tests.py @@ -33,7 +33,7 @@ for cc, cxx in possible_compilers: and '--enable-prof' in config_opts: continue config_line = ( - './configure ' + 'EXTRA_CFLAGS=-Werror EXTRA_CXXFLAGS=-Werror ./configure ' + 'CC="{} {}" '.format(cc, " ".join(compiler_opts)) + 'CXX="{} {}" '.format(cxx, " ".join(compiler_opts)) + " ".join(config_opts) |