mirror of
https://github.com/irungentoo/toxcore.git
synced 2024-03-22 13:30:51 +08:00
74bf0fc2c8
This flag isn't helpful for the most common case of aggregate initialisation, namely `{0}`. We don't want to be writing `{{{0}}}` with some brittle number of braces.
29 lines
661 B
Bash
Executable File
29 lines
661 B
Bash
Executable File
#!/bin/bash
|
|
|
|
. other/analysis/gen-file.sh
|
|
|
|
echo "Running Clang compiler"
|
|
clang++ -o /dev/null amalgamation.cc \
|
|
"${CPPFLAGS[@]}" \
|
|
"${LDFLAGS[@]}" \
|
|
-std=c++11 \
|
|
-Werror \
|
|
-Weverything \
|
|
-Wno-alloca \
|
|
-Wno-c++98-compat-pedantic \
|
|
-Wno-c99-extensions \
|
|
-Wno-conversion \
|
|
-Wno-covered-switch-default \
|
|
-Wno-disabled-macro-expansion \
|
|
-Wno-documentation-deprecated-sync \
|
|
-Wno-global-constructors \
|
|
-Wno-missing-braces \
|
|
-Wno-missing-field-initializers \
|
|
-Wno-old-style-cast \
|
|
-Wno-padded \
|
|
-Wno-sign-compare \
|
|
-Wno-unreachable-code-return \
|
|
-Wno-unused-parameter \
|
|
-Wno-used-but-marked-unused \
|
|
-Wno-source-uses-openmp
|