[commit: ghc] master: Mark -dynamic-too as unsupported for now (4d15f23)

Ian Lynagh igloo at earth.li
Fri Apr 26 03:12:31 CEST 2013


Repository : http://darcs.haskell.org/ghc.git/

On branch  : master

https://github.com/ghc/ghc/commit/4d15f23ccf2e385298c2475cc2a5ed6d5b3c8bc8

>---------------------------------------------------------------

commit 4d15f23ccf2e385298c2475cc2a5ed6d5b3c8bc8
Author: Ian Lynagh <ian at well-typed.com>
Date:   Fri Apr 26 01:17:29 2013 +0100

    Mark -dynamic-too as unsupported for now
    
    It doesn't work with --make yet. Trac #7864 filed.

>---------------------------------------------------------------

 compiler/main/DynFlags.hs | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/compiler/main/DynFlags.hs b/compiler/main/DynFlags.hs
index a062dc1..47543ae 100644
--- a/compiler/main/DynFlags.hs
+++ b/compiler/main/DynFlags.hs
@@ -3353,7 +3353,8 @@ compilerInfo dflags
        ("Support SMP",                 cGhcWithSMP),
        ("Tables next to code",         cGhcEnableTablesNextToCode),
        ("RTS ways",                    cGhcRTSWays),
-       ("Support dynamic-too",         "YES"),
+       -- -dynamic-too doesn't work with --make yet; #7864
+       ("Support dynamic-too",         "NO"),
        ("Dynamic by default",          if dYNAMIC_BY_DEFAULT dflags
                                        then "YES" else "NO"),
        ("GHC Dynamic",                 if cDYNAMIC_GHC_PROGRAMS





More information about the ghc-commits mailing list