David Eichmann pushed to branch wip/davide/windows-dlls at Glasgow Haskell Compiler / GHC

Commits:

1 changed file:

Changes:

  • compiler/GHC/Stg/Utils.hs
    ... ... @@ -148,7 +148,7 @@ allowTopLevelConApp platform ext_dyn_refs this_mod con args
    148 148
       -- can be incompatible with some security restrictions, but note that
    
    149 149
       -- ghc-internal and everything would need to be rebuilt. Note also that
    
    150 150
       -- dynamic top level con apps increases symbol exports a lot.
    
    151
    -  | platformOS platform == OSMinGW32 = True
    
    151
    +  | platformOS platform == OSMinGW32 = False
    
    152 152
     
    
    153 153
       -- otherwise, allowed
    
    154 154
       -- Sylvain: shouldn't this be False when (ext_dyn_refs && is_external_con_app)?