diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2021-04-20 11:14:00 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2021-04-20 11:14:00 +0200 |
commit | 7f88f5ec14ab650600bdc3063c81275f7cd70359 (patch) | |
tree | ed418ec7b51c4763c1494905cd7f2c4845f601d4 /tests | |
parent | 37758a01761331f534768a95f1948637cb7149c6 (diff) |
Disable bunch of bogus GCC warnings
Diffstat (limited to 'tests')
-rw-r--r-- | tests/build/root.build | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/build/root.build b/tests/build/root.build index bb274d3..de83d12 100644 --- a/tests/build/root.build +++ b/tests/build/root.build @@ -13,6 +13,8 @@ if ($cxx.target.system == 'win32-msvc') if ($cxx.class == 'msvc') cxx.coptions += /wd4251 /wd4275 /wd4800 +elif ($cxx.id == 'gcc') + cxx.coptions += -Wno-maybe-uninitialized -Wno-free-nonheap-object # Every exe{} in this subproject is by default a test. # |