diff options
author | David M Peixotto <dmp@rice.edu> | 2011-10-18 11:58:34 -0500 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2012-02-16 21:33:40 +0000 |
commit | 7cd5106f729a725bfbf082b3c45ae2bf9e704ac1 (patch) | |
tree | a02a6ee8a955d9ad6374f8b5e55368d13f2c4958 /testsuite/config | |
parent | cdbb35cbaf711367638698b7d22fe4c848c44aef (diff) | |
download | haskell-7cd5106f729a725bfbf082b3c45ae2bf9e704ac1.tar.gz |
Add optllvm as allowed way in testsuite
The hooks for the optllvm way were there in the ghc config
file, but there was no entry in config.other_ways so that a
`make WAY=optllvm` would fail with an "unknown way" error
message.
This patch simply adds optllvm to the other_ways list.
Diffstat (limited to 'testsuite/config')
-rw-r--r-- | testsuite/config/ghc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testsuite/config/ghc b/testsuite/config/ghc index 26ec825dca..4f4544139b 100644 --- a/testsuite/config/ghc +++ b/testsuite/config/ghc @@ -26,7 +26,7 @@ config.other_ways = ['extcore','optextcore', 'prof_hc_hb','prof_hb', 'prof_hd','prof_hy','prof_hr', 'threaded1_ls', 'threaded2_hT', - 'llvm', 'debugllvm'] + 'llvm', 'debugllvm', 'optllvm'] if (ghc_with_native_codegen == 1): config.compile_ways.append('optasm') |