Switch the default -dynload mode to SystemDependent
authorDuncan Coutts <duncan@well-typed.com>
Sun, 17 May 2009 00:36:30 +0000 (00:36 +0000)
committerDuncan Coutts <duncan@well-typed.com>
Sun, 17 May 2009 00:36:30 +0000 (00:36 +0000)
The previous default was Deployable though it was being
overridden to Wrapper in the ghc shell script wrapper.

compiler/main/DynFlags.hs
ghc/ghc.wrapper

index 50fd2cf..764fb91 100644 (file)
@@ -614,7 +614,7 @@ defaultDynFlags =
 
         outputFile              = Nothing,
         outputHi                = Nothing,
-        dynLibLoader            = Deployable,
+        dynLibLoader            = SystemDependent,
         dumpPrefix              = Nothing,
         dumpPrefixForce         = Nothing,
         includePaths            = [],
index ce409ca..9b2ba0f 100644 (file)
@@ -1 +1 @@
-exec $executablename -B$datadir -dynload wrapped ${1+"$@"}
+exec $executablename -B$datadir ${1+"$@"}