diff options
author | Oliver Reiche <oliver.reiche@huawei.com> | 2022-03-03 13:45:35 +0100 |
---|---|---|
committer | Oliver Reiche <oliver.reiche@huawei.com> | 2022-03-03 15:09:11 +0100 |
commit | a9383a9131c1e2ba2a55f9b44d5756d3322496f4 (patch) | |
tree | ec7eaae76d4a355932a58da5dc934a52c2a3a568 /etc/defaults | |
parent | 25713852da6ec16e37dd8ad53639d9241bcb4ea0 (diff) | |
download | justbuild-a9383a9131c1e2ba2a55f9b44d5756d3322496f4.tar.gz |
External re2: Disable warnings
Diffstat (limited to 'etc/defaults')
-rw-r--r-- | etc/defaults/CC/TARGETS.re2 | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/etc/defaults/CC/TARGETS.re2 b/etc/defaults/CC/TARGETS.re2 new file mode 100644 index 00000000..aecce9e9 --- /dev/null +++ b/etc/defaults/CC/TARGETS.re2 @@ -0,0 +1,17 @@ +{ "defaults": + { "type": ["CC", "defaults"] + , "CC": ["clang"] + , "CXX": ["clang++"] + , "CFLAGS": [] + , "CXXFLAGS": + [ "-std=c++11" + , "-pthread" + , "-Wall" + , "-Wextra" + , "-Wno-unused-parameter" + , "-Wno-missing-field-initializers" + ] + , "AR": ["ar"] + , "PATH": ["/bin", "/sbin", "/usr/bin", "/usr/sbin"] + } +} |