diff options
Diffstat (limited to 'test-profile-arcs.sh')
-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 |