diff options
author | Jack Lloyd <[email protected]> | 2015-10-26 15:36:23 -0400 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2015-10-26 15:36:23 -0400 |
commit | 299119f02c09e7d3e657b13e1706cb653eff560c (patch) | |
tree | 18227f400786a023ca7a13cd8f6f541d56c962f7 /src/scripts/ci/circle/gcc-static-debug.sh | |
parent | 54540244c1d89faa5b359c75a9c38b6fed0a08c9 (diff) |
Remove --build-mode and add individual toggles for optimization, debug,
sanitizers and coverage as all 4 are usefully set independently.
Use GCC 4.9 on CircleCI as it seems to be supported. Add ASan + UBSan test.
Diffstat (limited to 'src/scripts/ci/circle/gcc-static-debug.sh')
-rwxr-xr-x | src/scripts/ci/circle/gcc-static-debug.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/scripts/ci/circle/gcc-static-debug.sh b/src/scripts/ci/circle/gcc-static-debug.sh index c7d23b9b0..76f4c46b7 100755 --- a/src/scripts/ci/circle/gcc-static-debug.sh +++ b/src/scripts/ci/circle/gcc-static-debug.sh @@ -5,6 +5,6 @@ which shellcheck > /dev/null && shellcheck "$0" # Run shellcheck on this if avai BUILD_NICKNAME=$(basename "$0" .sh) BUILD_DIR="./build-$BUILD_NICKNAME" -./configure.py --with-build-dir="$BUILD_DIR" --build-mode=debug --disable-shared --via-amalgamation +./configure.py --with-build-dir="$BUILD_DIR" --with-debug-info --disable-shared --via-amalgamation make -j 2 -f "$BUILD_DIR"/Makefile "$BUILD_DIR"/botan-test |