diff options
author | Steven Le Rouzic <steven.lerouzic@gmail.com> | 2024-03-24 23:49:26 +0100 |
---|---|---|
committer | Steven Le Rouzic <steven.lerouzic@gmail.com> | 2024-03-24 23:49:26 +0100 |
commit | 00c0d78199fcfbbb20828be5e06fd2d271fa4c1e (patch) | |
tree | e74aa52990af33f7bf1e4d452b464c3e24d1017e /.bazelrc |
Initial commit
Diffstat (limited to '.bazelrc')
-rw-r--r-- | .bazelrc | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/.bazelrc b/.bazelrc new file mode 100644 index 0000000..e385c65 --- /dev/null +++ b/.bazelrc @@ -0,0 +1,14 @@ +build --copt=/std:c++20
+build --copt=-Wall
+build --copt=-Wno-pre-c++17-compat
+build --copt=-Wno-c++98-compat
+build --copt=-Wno-pre-c++20-compat-pedantic
+build --copt=-Wno-old-style-cast
+build --copt=-Wno-c++98-compat-pedantic
+build --copt=-Wno-cast-function-type-strict
+build --copt=-Wno-nonportable-system-include-path
+build --copt=-Wno-extra-semi-stmt
+build --copt=-Wno-c++20-compat
+build --copt=-Wno-extra-semi
+build --copt=-Wno-unsafe-buffer-usage
+build --copt=-Wno-missing-prototypes
|