diff options
author | Martin Stensgård <mastensg@mastensg.net> | 2016-11-02 03:18:45 +0100 |
---|---|---|
committer | Martin Stensgård <mastensg@mastensg.net> | 2016-11-02 03:18:45 +0100 |
commit | 43581feaee5394ec94ae034bcf73a373f6d193d3 (patch) | |
tree | 9ef89849a3c4a9cbd55934e3eed31293b5d7f646 | |
parent | bbe3672be7584599b406a8349dd1efb8db8b6633 (diff) |
test-profile-arcs: march=core2
Maybe Travis will build it now.
-rwxr-xr-x | test-profile-arcs.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test-profile-arcs.sh b/test-profile-arcs.sh index e8d390e..2542388 100755 --- a/test-profile-arcs.sh +++ b/test-profile-arcs.sh @@ -5,20 +5,20 @@ set -e autoreconf -f -i echo >&2 "Baseline" -./configure CFLAGS='-O3 -march=native' CC=gcc >/dev/null +./configure CFLAGS='-O3 -march=core2' CC=gcc >/dev/null make clean >/dev/null make >/dev/null ./ray-headless echo >&2 "Profiling" -./configure CFLAGS='-O3 -march=native -fprofile-generate' CC=gcc >/dev/null +./configure CFLAGS='-O3 -march=core2 -fprofile-generate' CC=gcc >/dev/null make clean >/dev/null make >/dev/null ./ray-headless echo >&2 "Using profile" -./configure CFLAGS='-O3 -march=native -fprofile-use -fprofile-correction' CC=gcc >/dev/null +./configure CFLAGS='-O3 -march=core2 -fprofile-use -fprofile-correction' CC=gcc >/dev/null make clean >/dev/null make >/dev/null ./ray-headless |