From 15ccf02b51c72a7bb6eb098c157005a78cd3f84d Mon Sep 17 00:00:00 2001 From: Michael Orlitzky Date: Wed, 14 Sep 2011 13:36:42 -0400 Subject: [PATCH] Switch the default compiler back to GHC. --- makefile | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/makefile b/makefile index 82ddbdd..2110611 100644 --- a/makefile +++ b/makefile @@ -29,10 +29,10 @@ GHC_OPTS := $(OPTIMIZATIONS) \ .PHONY : test publish_doc doc src_html hlint $(BIN): src/*.hs - ghc -fllvm $(GHC_OPTS) src/*.hs + ghc -optc-O3 -optc-march=native $(GHC_OPTS) src/*.hs -gcc: src/*.hs - ghc -optc-O2 -optc-march=native $(GHC_OPTS) src/*.hs +llvm: src/*.hs + ghc -fllvm $(GHC_OPTS) src/*.hs all: $(BIN) test_src @@ -40,10 +40,10 @@ test_src: src/Tests/*.hs ghc $(GHC_OPTS) src/*.hs src/Tests/*.hs profile: src/*.hs - ghc -fllvm $(GHC_OPTS) -prof -auto-all -caf-all src/*.hs + ghc -optc-O3 -optc-march=native $(GHC_OPTS) -prof -auto-all -caf-all src/*.hs -profile-gcc: src/*.hs - ghc -optc-O2 -optc-march=native $(GHC_OPTS) -prof -auto-all -caf-all src/*.hs +profile-llvm: src/*.hs + ghc -fllvm $(GHC_OPTS) -prof -auto-all -caf-all src/*.hs clean: rm -f bin/$(BIN) -- 2.43.2