diff options
author | Gabriel A. Devenyi <gdevenyi@gmail.com> | 2020-01-28 10:12:25 -0500 |
---|---|---|
committer | Hans Kristian Rosbach <hk-github@circlestorm.org> | 2020-02-07 16:45:52 +0100 |
commit | 0693caad24f682729fffd6d840a1900ee2dbebdb (patch) | |
tree | 6620c4cc748befe2d22ddb04b9401a0c4089d95e /configure | |
parent | 783f2612583d693b008495da57b82a15b3f4aacc (diff) |
Fix double specification of -O2
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -332,7 +332,7 @@ if test "$gcc" -eq 1 && ($cc $CFLAGS -c $test.c) >> configure.log 2>&1; then LDFLAGS="${LDFLAGS} ${ARCHS}" fi CFLAGS="${CFLAGS} -Wall" - SFLAGS="-O2 ${CFLAGS} -fPIC" + SFLAGS="${CFLAGS} -fPIC" if test $native -eq 1; then CFLAGS="${CFLAGS} -march=native" SFLAGS="${SFLAGS} -march=native" |