no llvm ghc-option on windows os

This commit is contained in:
tpajenka 2014-03-09 00:37:00 +01:00
parent 872d28c043
commit 05b6ae863b

View File

@ -30,7 +30,11 @@ executable hgraph
DCB.DCB,
DCB.Structures,
DCB.IO
ghc-options: -Odph -rtsopts -threaded -fno-liberate-case -funfolding-use-threshold1000 -funfolding-keeness-factor1000 -optlo-O3 -fllvm
if os(windows) {
ghc-options: -Odph -rtsopts -threaded -fno-liberate-case -funfolding-use-threshold1000 -funfolding-keeness-factor1000 -optlo-O3
} else {
ghc-options: -Odph -rtsopts -threaded -fno-liberate-case -funfolding-use-threshold1000 -funfolding-keeness-factor1000 -optlo-O3 -fllvm
}
extensions:
BangPatterns,
DoAndIfThenElse