Skip to content

Commit

Permalink
turning on -Wall for strict autotools build
Browse files Browse the repository at this point in the history
  • Loading branch information
edwardhartnett committed Aug 20, 2020
1 parent 1085b95 commit aa9f62c
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/strict_autotools.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,11 +46,13 @@ jobs:
run: autoreconf -i
- name: configure
run: |
export CFLAGS="-std=c99 -fsanitize=address -fno-omit-frame-pointer -Werror"
export FFLAGS="-fsanitize=address -fno-omit-frame-pointer -Werror"
export FCFLAGS="-fsanitize=address -fno-omit-frame-pointer -Werror"
./configure
set -x
export CFLAGS="-std=c99 -fsanitize=address -fno-omit-frame-pointer -Werror -Wall"
export FFLAGS="-fsanitize=address -fno-omit-frame-pointer -Werror -Wall"
export FCFLAGS="-fsanitize=address -fno-omit-frame-pointer -Werror -Wall"
./configure
- name: make -j distcheck
run: |
set -x
export DISTCHECK_CONFIGURE_FLAGS="--enable-fortran"
make -j distcheck

0 comments on commit aa9f62c

Please sign in to comment.