diff options
author | Andrei Karas <akaras@inbox.ru> | 2017-01-04 01:43:42 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-01-04 01:43:42 +0300 |
commit | 65bccb4fc48707a8bcccedaa57a87468ad8b7349 (patch) | |
tree | 49d7821a48bd8545afb0f917cec185798f7e034c /tools/ci/flags/gcc6.sh | |
parent | 2e82d3003315806076a53df23064ba744e491fc2 (diff) | |
download | plus-65bccb4fc48707a8bcccedaa57a87468ad8b7349.tar.gz plus-65bccb4fc48707a8bcccedaa57a87468ad8b7349.tar.bz2 plus-65bccb4fc48707a8bcccedaa57a87468ad8b7349.tar.xz plus-65bccb4fc48707a8bcccedaa57a87468ad8b7349.zip |
Add compiler flag -Wno-attributes for prevent warnings about packed attributes.
Diffstat (limited to 'tools/ci/flags/gcc6.sh')
-rwxr-xr-x | tools/ci/flags/gcc6.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/ci/flags/gcc6.sh b/tools/ci/flags/gcc6.sh index 095a878ab..c245ac72b 100755 --- a/tools/ci/flags/gcc6.sh +++ b/tools/ci/flags/gcc6.sh @@ -23,7 +23,8 @@ export CXXFLAGS="${CXXFLAGS} -Warray-bounds=2" # not for C++ #export CXXFLAGS="${CXXFLAGS} -Warray-temporaries" #export CXXFLAGS="${CXXFLAGS} -Wassign-intercept" -export CXXFLAGS="${CXXFLAGS} -Wattributes" +# show warning for padding +#export CXXFLAGS="${CXXFLAGS} -Wattributes" # not for C++ #export CXXFLAGS="${CXXFLAGS} -Wbad-function-cast" export CXXFLAGS="${CXXFLAGS} -Wbool-compare" |