1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- #!/usr/bin/env bash
- export CC=gcc-5
- export CXX=g++-5
- if [ "$NEWCC" != "" ]; then
- export CC="$NEWCC"
- fi
- if [ "$NEWCXX" != "" ]; then
- export CXX="$NEWCXX"
- fi
- export LOGFILE=gcc5_sdl2.log
- source ./tools/ci/scripts/init.sh
- # need fix -Woverloaded-virtual
- export CXXFLAGS="$CXXFLAGS -ggdb3 -O2 -pipe -ffast-math \
- -fno-omit-frame-pointer -funswitch-loops \
- -Wvariadic-macros -Wvla -Wredundant-decls \
- -Wpacked-bitfield-compat -Wtrampolines \
- -Wsuggest-attribute=noreturn -Wunused -Wstrict-aliasing=2 \
- -fstrict-aliasing -Wunreachable-code \
- -Wvolatile-register-var -Winvalid-pch -Wredundant-decls \
- -Wnormalized=nfkc -Wmissing-format-attribute -Wmissing-noreturn \
- -Wsign-promo -Waddress -Wmissing-declarations \
- -Wctor-dtor-privacy -Wstrict-null-sentinel -Wlogical-op \
- -Wcast-align -Wpointer-arith -Wundef \
- -Wmissing-include-dirs -Winit-self -pedantic -Wall \
- -Wpacked -Wextra -fstrict-overflow -Wstrict-overflow=1 -Wunknown-pragmas \
- -Wwrite-strings -Wstack-protector -Wshadow -Wunused-macros -Wsynth \
- -Wbuiltin-macro-redefined -Wctor-dtor-privacy -Wdeprecated \
- -Wendif-labels -Wformat=1 -Wimport -Wnon-virtual-dtor -Wpsabi \
- -Wsign-promo -Wwrite-strings -D_FORTIFY_SOURCE=2 \
- -Wdelete-non-virtual-dtor -Wmaybe-uninitialized -Wunused-local-typedefs \
- -Wvector-operation-performance -Wfree-nonheap-object -Winvalid-memory-model \
- -Wnarrowing -Wzero-as-null-pointer-constant -funsafe-loop-optimizations \
- -Waggressive-loop-optimizations -Wclobbered -Wempty-body \
- -Wignored-qualifiers -Wliteral-suffix -Wmissing-field-initializers \
- -Woverlength-strings -Wpedantic -Wsign-compare -Wsizeof-pointer-memaccess \
- -Wsuggest-attribute=format -Wtype-limits -Wuninitialized \
- -Wunused-but-set-parameter -Wunused-but-set-variable -Wunused-function \
- -Wunused-label -Wunused-parameter -Wunused-value -Wunused-variable -ftrapv \
- -fsched-pressure \
- -Wconditionally-supported -Wdate-time \
- -fno-var-tracking -Wno-attributes \
- -Wopenmp-simd -Wformat-signedness \
- -Wswitch-bool -Wmemset-transposed-args -Wchkp -Wsized-deallocation \
- -Wlogical-not-parentheses \
- -Wno-variadic-macros -Wno-zero-as-null-pointer-constant $POST_CXXFLAGS"
- do_init
- run_configure --enable-werror --with-sdl2 $*
- run_make
- source ./tools/ci/scripts/exit.sh
- exit 0
|