diff options
| author | Matt Peters <[email protected]> | 2022-01-10 10:57:59 -0700 |
|---|---|---|
| committer | Matt Peters <[email protected]> | 2022-01-10 10:57:59 -0700 |
| commit | 4a12683b27adb31bde9eb8f7df3b9e9cc8ec680a (patch) | |
| tree | c8b2939d400dd4bccae73d2782b15c65d30db19d /xmake.lua | |
| parent | Add WaitForQuiescence RPC (diff) | |
| parent | Two missing override keywords (diff) | |
| download | zen-wait_for_quiescence.tar.xz zen-wait_for_quiescence.zip | |
Merge branch 'main' into wait_for_quiescencewait_for_quiescence
Diffstat (limited to 'xmake.lua')
| -rw-r--r-- | xmake.lua | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -58,10 +58,11 @@ if is_os("windows") then end if is_os("linux") or is_os("macosx") then - add_cxxflags("-Wno-unused-value") - add_cxxflags("-Wno-strict-aliasing") add_cxxflags("-Wno-implicit-fallthrough") add_cxxflags("-Wno-missing-field-initializers") + add_cxxflags("-Wno-strict-aliasing") + add_cxxflags("-Wno-unused-private-field") + add_cxxflags("-Wno-unused-value") end -- Turn use of undefined cpp macros into errors |