diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2022-02-14 11:58:58 +0200 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2022-02-17 13:05:38 +0300 |
commit | da89007801070651f592575f73dd4130dc324998 (patch) | |
tree | 549824443846bc7ce4bfb5797d2add315b7f6a4f /build | |
parent | 23c742932330d724e7b97c353e7cbc99f2b0c106 (diff) |
Implement package skeleton loading and enable and reflect clauses evaluation
Diffstat (limited to 'build')
-rw-r--r-- | build/root.build | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/build/root.build b/build/root.build index b32c01e..c172018 100644 --- a/build/root.build +++ b/build/root.build @@ -16,7 +16,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 + cxx.coptions += -Wno-maybe-uninitialized -Wno-free-nonheap-object \ +-Wno-stringop-overread # libbutl cxx.poptions =+ "-I$out_root" "-I$src_root" |