Skip to content

Commit

Permalink
Drop -ftree-vectorize flag
Browse files Browse the repository at this point in the history
  • Loading branch information
mkrack committed Jan 31, 2020
1 parent 3cbb777 commit 349732c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tools/toolchain/scripts/setup_buildtools.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ done

# setup compiler flags, leading to nice stack traces on crashes but
# still optimised
CFLAGS="-O2 -fno-omit-frame-pointer -ftree-vectorize -g -march=native -mtune=native ${TSANFLAGS}"
CFLAGS="-O2 -fno-omit-frame-pointer -g -march=native -mtune=native ${TSANFLAGS}"
CXXFLAGS="${CFLAGS}"
FFLAGS="-O2 -fbacktrace -fno-omit-frame-pointer -ftree-vectorize -g -march=native -mtune=native ${TSANFLAGS}"
FFLAGS="-O2 -fbacktrace -fno-omit-frame-pointer -g -march=native -mtune=native ${TSANFLAGS}"
F77FLAGS="${FFLAGS}"
F90FLAGS="${FFLAGS}"
FCFLAGS="${FFLAGS}"
Expand Down

0 comments on commit 349732c

Please sign in to comment.