diff options
Diffstat (limited to 'testsuite/config')
-rw-r--r-- | testsuite/config/ghc | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/testsuite/config/ghc b/testsuite/config/ghc index 6d90e83397..aed4c22fb0 100644 --- a/testsuite/config/ghc +++ b/testsuite/config/ghc @@ -53,11 +53,12 @@ if ghc_with_threaded_rts: config.run_ways.append('nonmoving_thr') if ghc_with_dynamic_rts: - config.have_shared_libs = True - -if ghc_with_dynamic_rts: + config.supports_dynamic_libs = True config.run_ways.append('dyn') +if windows: + config.supports_dynamic_hs = False + if (config.have_profiling and ghc_with_threaded_rts): config.run_ways.append('profthreaded') |