diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2021-04-20 11:16:20 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2021-04-20 11:16:20 +0200 |
commit | 834152a6e3f3e8459b53e49370bfdd82685a700d (patch) | |
tree | add6f4cbeea29a217b0958f2548d458701d0a9f6 /tests/build | |
parent | f092670a89ce4eb213cf295406996fe97d257d21 (diff) |
Disable bunch of bogus GCC warnings
Diffstat (limited to 'tests/build')
-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 5bf6731..00fa374 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 # libbutl # Setup the build system driver that we are testing (which may not be the same # as our $build.path). We also need to disable importation using the built-in |