diff options
author | Ian Lynagh <igloo@earth.li> | 2010-08-05 01:11:37 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2010-08-05 01:11:37 +0000 |
commit | 320738062c7a81f062c5adab98a1a1c4fdbd4bc7 (patch) | |
tree | c7852c0dae4d2c50b78797fab6ce65a6e88da98f /rts/hooks | |
parent | d0fb9a95f40453321b82e23d9b322e79340b48c9 (diff) | |
download | haskell-320738062c7a81f062c5adab98a1a1c4fdbd4bc7.tar.gz |
Make -rtsopts more flexible
The default is a new "some" state, which allows only known-safe flags
that we want on by default. Currently this is only "--info".
Diffstat (limited to 'rts/hooks')
-rw-r--r-- | rts/hooks/RtsOptsEnabled.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rts/hooks/RtsOptsEnabled.c b/rts/hooks/RtsOptsEnabled.c index d7d6cb595f..f5d81579f6 100644 --- a/rts/hooks/RtsOptsEnabled.c +++ b/rts/hooks/RtsOptsEnabled.c @@ -9,5 +9,5 @@ #include "Rts.h" #include "RtsOpts.h" -const rtsBool rtsOptsEnabled = rtsFalse; +const rtsOptsEnabledEnum rtsOptsEnabled = rtsOptsSafeOnly; |