[commit: nofib] master: Remove -march=native from several shootout entries (81fac78)
git at git.haskell.org
git at git.haskell.org
Mon Aug 19 10:04:45 CEST 2013
Repository : ssh://git@git.haskell.org/nofib
On branch : master
Link : http://ghc.haskell.org/trac/ghc/changeset/81fac78910ad7a242ab1d83ffd8cf5eee1d62d7b/nofib
>---------------------------------------------------------------
commit 81fac78910ad7a242ab1d83ffd8cf5eee1d62d7b
Author: Austin Seipp <aseipp at pobox.com>
Date: Mon Aug 19 03:03:24 2013 -0500
Remove -march=native from several shootout entries
John Wiegley tells me this causes a failure for nofib on his machine, so
to be safe we'll back it out for now.
Signed-off-by: Austin Seipp <aseipp at pobox.com>
>---------------------------------------------------------------
81fac78910ad7a242ab1d83ffd8cf5eee1d62d7b
shootout/fasta/Makefile | 2 +-
shootout/k-nucleotide/Makefile | 2 +-
shootout/reverse-complement/Makefile | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/shootout/fasta/Makefile b/shootout/fasta/Makefile
index 9ffd906..447b3a8 100644
--- a/shootout/fasta/Makefile
+++ b/shootout/fasta/Makefile
@@ -17,7 +17,7 @@ HC_OPTS += -O2 -XBangPatterns -XOverloadedStrings -package bytestring
# Create output to validate against
fasta-c : fasta-c.c
- $(CC) -std=gnu99 -march=native -O3 -fomit-frame-pointer $< -o $@
+ $(CC) -std=gnu99 -O3 -fomit-frame-pointer $< -o $@
fasta.faststdout : fasta-c
./fasta-c $(FAST_OPTS) > $@
diff --git a/shootout/k-nucleotide/Makefile b/shootout/k-nucleotide/Makefile
index e286212..5d0baaf 100644
--- a/shootout/k-nucleotide/Makefile
+++ b/shootout/k-nucleotide/Makefile
@@ -15,7 +15,7 @@ HC_OPTS += -O2 -XBangPatterns -package bytestring
# Create input
fasta-c : ../fasta/fasta-c.c
- $(CC) -std=gnu99 -march=native -O3 -fomit-frame-pointer $< -o $@
+ $(CC) -std=gnu99 -O3 -fomit-frame-pointer $< -o $@
knucleotide-input250000.txt : fasta-c
./fasta-c $(FAST_OPTS) > $@
diff --git a/shootout/reverse-complement/Makefile b/shootout/reverse-complement/Makefile
index 03359d8..4524dc1 100644
--- a/shootout/reverse-complement/Makefile
+++ b/shootout/reverse-complement/Makefile
@@ -20,7 +20,7 @@ HC_OPTS += -O2 -XBangPatterns -funfolding-use-threshold=32 -XMagicHash \
# Create input
fasta-c : ../fasta/fasta-c.c
- $(CC) -std=gnu99 -march=native -O3 -fomit-frame-pointer $< -o $@
+ $(CC) -std=gnu99 -O3 -fomit-frame-pointer $< -o $@
revcomp-input250000.txt : fasta-c
./fasta-c $(FAST_OPTS) > $@
More information about the ghc-commits
mailing list