[commit: ghc] master: deriveConstants: Fix nm-classic error message (28503fe)

git at git.haskell.org git at git.haskell.org
Sun Apr 24 09:34:50 UTC 2016


Repository : ssh://git@git.haskell.org/ghc

On branch  : master
Link       : http://ghc.haskell.org/trac/ghc/changeset/28503fe984dbc00f687f0579967d583eebb9afcb/ghc

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

commit 28503fe984dbc00f687f0579967d583eebb9afcb
Author: Ben Gamari <ben at smart-cactus.org>
Date:   Sun Apr 24 11:31:51 2016 +0200

    deriveConstants: Fix nm-classic error message
    
    Thanks to George Colpitts for the suggestion.


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

28503fe984dbc00f687f0579967d583eebb9afcb
 utils/deriveConstants/Main.hs | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/utils/deriveConstants/Main.hs b/utils/deriveConstants/Main.hs
index 96da166..6a050d3 100644
--- a/utils/deriveConstants/Main.hs
+++ b/utils/deriveConstants/Main.hs
@@ -691,7 +691,10 @@ getWanted verbose os tmpdir gccProgram gccFlags nmProgram mobjdumpProgram
              Just 292   -> return () -- OK
              Nothing    -> die "CONTROL_GROUP_CONST_291 missing!"
              Just 0x292 -> die $ "broken 'nm' detected, see https://ghc.haskell.org/ticket/11744.\n"
-                              ++ "Workaround: You may want to pass '--with-nm=nm-classic' to 'configure'."
+                              ++ "\n"
+                              ++ "Workaround: You may want to pass\n"
+                              ++ "    --with-nm=$(xcode-select -p)/Toolchains/XcodeDefault.xctoolchain/usr/bin/nm-classic\n"
+                              ++ "to 'configure'.\n"
              Just x     -> die ("unexpected value round-tripped for CONTROL_GROUP_CONST_291: " ++ show x)
 
          rs <- mapM (lookupResult m) (wanteds os)



More information about the ghc-commits mailing list