[Git][ghc/ghc][wip/T23675] 3 commits: ghc-toolchain: Add support for otool, install-name-tool

Ben Gamari (@bgamari) gitlab at gitlab.haskell.org
Tue Mar 11 22:05:11 UTC 2025



Ben Gamari pushed to branch wip/T23675 at Glasgow Haskell Compiler / GHC


Commits:
0aed169e by Ben Gamari at 2025-03-11T17:32:36-04:00
ghc-toolchain: Add support for otool, install-name-tool

Fixes part of ghc#23675.

- - - - -
2e552175 by Ben Gamari at 2025-03-11T17:38:00-04:00
ghc-toolchain: Add support for llc, opt, llvm-as

Fixes #23675.

- - - - -
5ed3015e by Ben Gamari at 2025-03-11T18:03:02-04:00
configure: Don't force value of OTOOL, etc. if not present

Previously if `otool` and `install_name_tool` were not present they
would be overridden by `fp_settings.m4`. This logic was introduced in
4ff93292243888545da452ea4d4c1987f2343591 without explanation.

- - - - -


7 changed files:

- hadrian/cfg/default.host.target.in
- hadrian/cfg/default.target.in
- m4/fp_settings.m4
- m4/ghc_toolchain.m4
- m4/prep_target_file.m4
- utils/ghc-toolchain/exe/Main.hs
- utils/ghc-toolchain/src/GHC/Toolchain/Target.hs


Changes:

=====================================
hadrian/cfg/default.host.target.in
=====================================
@@ -38,5 +38,10 @@ Target
 , tgtRanlib = Nothing
 , tgtNm = Nm {nmProgram = Program {prgPath = "", prgFlags = []}}
 , tgtMergeObjs = Just (MergeObjs {mergeObjsProgram = Program {prgPath = "@LD_STAGE0@", prgFlags = ["-r"]}, mergeObjsSupportsResponseFiles = False})
+, tgtLlc = Nothing
+, tgtOpt = Nothing
+, tgtLlvmAs = Nothing
 , tgtWindres = Nothing
+, tgtOtool = Nothing
+, tgtInstallNameTool = Nothing
 }


=====================================
hadrian/cfg/default.target.in
=====================================
@@ -38,5 +38,10 @@ Target
 , tgtRanlib = Just (Ranlib {ranlibProgram = Program {prgPath = "@RanlibCmd@", prgFlags = []}})
 , tgtNm = Nm {nmProgram = Program {prgPath = "@NmCmd@", prgFlags = []}}
 , tgtMergeObjs = @MergeObjsCmdMaybe@
+, tgtLlc = @LlcCmdMaybeProg@
+, tgtOpt = @OptCmdMaybeProg@
+, tgtLlvmAs = @LlvmAsCmdMaybeProg@
 , tgtWindres = @WindresCmdMaybeProg@
+, tgtOtool = @OtoolCmdMaybeProg@
+, tgtInstallNameTool = @InstallNameToolCmdMaybeProg@
 }


=====================================
m4/fp_settings.m4
=====================================
@@ -136,14 +136,7 @@ AC_DEFUN([FP_SETTINGS],
     fi
 
     # Mac-only tools
-    if test -z "$OtoolCmd"; then
-        OtoolCmd="otool"
-    fi
     SettingsOtoolCommand="$OtoolCmd"
-
-    if test -z "$InstallNameToolCmd"; then
-        InstallNameToolCmd="install_name_tool"
-    fi
     SettingsInstallNameToolCommand="$InstallNameToolCmd"
 
     SettingsCCompilerSupportsNoPie="$CONF_GCC_SUPPORTS_NO_PIE"


=====================================
m4/ghc_toolchain.m4
=====================================
@@ -107,6 +107,9 @@ AC_DEFUN([FIND_GHC_TOOLCHAIN],
     echo "--merge-objs=$MergeObjsCmd" >> acargs
     echo "--readelf=$READELF" >> acargs
     echo "--windres=$WindresCmd" >> acargs
+    echo "--llc=$LlcCmd" >> acargs
+    echo "--opt=$OptCmd" >> acargs
+    echo "--llvm-as=$LlvmAsCmd" >> acargs
 
     if test -n "$USER_LD"; then
       echo "--ld=$USER_LD" >> acargs


=====================================
m4/prep_target_file.m4
=====================================
@@ -10,6 +10,38 @@
 # This toolchain will additionally be used to validate the one generated by
 # ghc-toolchain. See Note [ghc-toolchain consistency checking].
 
+# PREP_LIST
+# ============
+#
+# Issue a substitution with ["list","of","args"] of [$1List] when $1 is a
+# space-separated list of args
+# i.e.
+# "arg1 arg2 arg3"
+# ==>
+# ["arg1","arg2","arg3"]
+#
+# $1 = list variable to substitute
+dnl In autoconf, '@<:@' stands for '[', and '@:>@' for ']'.
+AC_DEFUN([PREP_LIST],[
+    # shell array
+    set -- $$1
+    $1List="@<:@"
+    if test "[$]#" -eq 0; then
+        # no arguments
+        true
+    else
+        $1List="${$1List}\"[$]1\""
+        shift # drop first elem
+        for arg in "[$]@"
+        do
+            $1List="${$1List},\"$arg\""
+        done
+    fi
+    $1List="${$1List}@:>@"
+
+    AC_SUBST([$1List])
+])
+
 # PREP_MAYBE_SIMPLE_PROGRAM
 # =========================
 #
@@ -27,6 +59,25 @@ AC_DEFUN([PREP_MAYBE_SIMPLE_PROGRAM],[
     AC_SUBST([$1MaybeProg])
 ])
 
+# PREP_MAYBE_PROGRAM
+# =========================
+#
+# Introduce a substitution [$1MaybeProg] with
+# * Nothing, if $$1 is empty
+# * Just (Program {prgPath = "$$1", prgFlags = [elements of $$2]}), otherwise
+#
+# $1 = optional program path
+# $2 = program arguments
+AC_DEFUN([PREP_MAYBE_PROGRAM],[
+    if test -z "$$1"; then
+        $1MaybeProg=Nothing
+    else
+        PREP_LIST([$2])
+        $1MaybeProg="Just (Program {prgPath = \"$$1\", prgFlags = $$2List})"
+    fi
+    AC_SUBST([$1MaybeProg])
+])
+
 # PREP_MAYBE_STRING
 # =========================
 #
@@ -86,38 +137,6 @@ AC_DEFUN([PREP_NOT_BOOLEAN],[
     AC_SUBST([Not$1Bool])
 ])
 
-# PREP_LIST
-# ============
-#
-# Issue a substitution with ["list","of","args"] of [$1List] when $1 is a
-# space-separated list of args
-# i.e.
-# "arg1 arg2 arg3"
-# ==>
-# ["arg1","arg2","arg3"]
-#
-# $1 = list variable to substitute
-dnl In autoconf, '@<:@' stands for '[', and '@:>@' for ']'.
-AC_DEFUN([PREP_LIST],[
-    # shell array
-    set -- $$1
-    $1List="@<:@"
-    if test "[$]#" -eq 0; then
-        # no arguments
-        true
-    else
-        $1List="${$1List}\"[$]1\""
-        shift # drop first elem
-        for arg in "[$]@"
-        do
-            $1List="${$1List},\"$arg\""
-        done
-    fi
-    $1List="${$1List}@:>@"
-
-    AC_SUBST([$1List])
-])
-
 # Eventually: PREP_BUILD_TARGET_FILE, PREP_HOST_TARGET_FILE, PREP_TARGET_TARGET_FILE
 # Prepares required substitutions to generate the target file
 AC_DEFUN([PREP_TARGET_FILE],[
@@ -148,7 +167,12 @@ AC_DEFUN([PREP_TARGET_FILE],[
     PREP_LIST([JavaScriptCPPArgs])
     PREP_LIST([CmmCPPArgs])
     PREP_LIST([CmmCPPArgs_STAGE0])
+    PREP_MAYBE_SIMPLE_PROGRAM([LlcCmd])
+    PREP_MAYBE_SIMPLE_PROGRAM([OptCmd])
+    PREP_MAYBE_PROGRAM([LlvmAsCmd], [LlvmAsFlags])
     PREP_MAYBE_SIMPLE_PROGRAM([WindresCmd])
+    PREP_MAYBE_SIMPLE_PROGRAM([OtoolCmd])
+    PREP_MAYBE_SIMPLE_PROGRAM([InstallNameToolCmd])
     PREP_MAYBE_STRING([TargetVendor_CPP])
     PREP_MAYBE_STRING([HostVendor_CPP])
     PREP_LIST([CONF_CPP_OPTS_STAGE2])


=====================================
utils/ghc-toolchain/exe/Main.hs
=====================================
@@ -52,7 +52,12 @@ data Opts = Opts
     , optNm        :: ProgOpt
     , optReadelf   :: ProgOpt
     , optMergeObjs :: ProgOpt
+    , optLlc       :: ProgOpt
+    , optOpt       :: ProgOpt
+    , optLlvmAs    :: ProgOpt
     , optWindres   :: ProgOpt
+    , optOtool     :: ProgOpt
+    , optInstallNameTool :: ProgOpt
     -- Note we don't actually configure LD into anything but
     -- see #23857 and #22550 for the very unfortunate story.
     , optLd        :: ProgOpt
@@ -99,8 +104,13 @@ emptyOpts = Opts
     , optNm        = po0
     , optReadelf   = po0
     , optMergeObjs = po0
+    , optLlc       = po0
+    , optOpt       = po0
+    , optLlvmAs    = po0
     , optWindres   = po0
     , optLd        = po0
+    , optOtool     = po0
+    , optInstallNameTool = po0
     , optUnregisterised = Nothing
     , optTablesNextToCode = Nothing
     , optUseLibFFIForAdjustors = Nothing
@@ -112,7 +122,8 @@ emptyOpts = Opts
     po0 = emptyProgOpt
 
 _optCc, _optCxx, _optCpp, _optHsCpp, _optJsCpp, _optCmmCpp, _optCcLink, _optAr,
-    _optRanlib, _optNm, _optReadelf, _optMergeObjs, _optWindres, _optLd
+    _optRanlib, _optNm, _optReadelf, _optMergeObjs, _optLlc, _optOpt, _optLlvmAs,
+    _optWindres, _optLd, _optOtool, _optInstallNameTool
     :: Lens Opts ProgOpt
 _optCc      = Lens optCc      (\x o -> o {optCc=x})
 _optCxx     = Lens optCxx     (\x o -> o {optCxx=x})
@@ -126,8 +137,13 @@ _optRanlib  = Lens optRanlib  (\x o -> o {optRanlib=x})
 _optNm      = Lens optNm      (\x o -> o {optNm=x})
 _optReadelf = Lens optReadelf (\x o -> o {optReadelf=x})
 _optMergeObjs = Lens optMergeObjs (\x o -> o {optMergeObjs=x})
+_optLlc     = Lens optLlc     (\x o -> o {optLlc=x})
+_optOpt     = Lens optOpt     (\x o -> o {optOpt=x})
+_optLlvmAs  = Lens optLlvmAs  (\x o -> o {optLlvmAs=x})
 _optWindres = Lens optWindres (\x o -> o {optWindres=x})
-_optLd = Lens optLd (\x o -> o {optLd= x})
+_optLd      = Lens optLd (\x o -> o {optLd=x})
+_optOtool   = Lens optOtool (\x o -> o {optOtool=x})
+_optInstallNameTool = Lens optInstallNameTool (\x o -> o {optInstallNameTool=x})
 
 _optTriple :: Lens Opts (Maybe String)
 _optTriple = Lens optTriple (\x o -> o {optTriple=x})
@@ -183,8 +199,13 @@ options =
     , progOpts "nm" "nm archiver" _optNm
     , progOpts "readelf" "readelf utility" _optReadelf
     , progOpts "merge-objs" "linker for merging objects" _optMergeObjs
+    , progOpts "llc" "LLVM llc utility" _optLlc
+    , progOpts "opt" "LLVM opt utility" _optOpt
+    , progOpts "llvm-as" "Assembler used for LLVM backend (typically clang)" _optLlvmAs
     , progOpts "windres" "windres utility" _optWindres
     , progOpts "ld" "linker" _optLd
+    , progOpts "otool" "otool utility" _optOtool
+    , progOpts "install-name-tool" "install-name-tool utility" _optInstallNameTool
     ]
   where
     progOpts :: String -> String -> Lens Opts ProgOpt -> [OptDescr (Opts -> Opts)]
@@ -434,6 +455,11 @@ mkTarget opts = do
     when (isNothing mergeObjs && not (arSupportsDashL ar)) $
       throwE "Neither a object-merging tool (e.g. ld -r) nor an ar that supports -L is available"
 
+    -- LLVM toolchain
+    llc <- optional $ findProgram "llc" (optLlc opts) ["llc"]
+    opt <- optional $ findProgram "opt" (optOpt opts) ["opt"]
+    llvmAs <- optional $ findProgram "llvm assembler" (optLlvmAs opts) ["clang"]
+
     -- Windows-specific utilities
     windres <-
         case archOS_OS archOs of
@@ -442,6 +468,15 @@ mkTarget opts = do
             return (Just windres)
           _ -> return Nothing
 
+    -- Darwin-specific utilities
+    (otool, installNameTool) <-
+        case archOS_OS archOs of
+          OSDarwin -> do
+            otool <- findProgram "otool" (optOtool opts) ["otool"]
+            installNameTool <- findProgram "install-name-tool" (optInstallNameTool opts) ["install-name-tool"]
+            return (Just otool, Just installNameTool)
+          _ -> return (Nothing, Nothing)
+
     -- various other properties of the platform
     tgtWordSize <- checkWordSize cc
     tgtEndianness <- checkEndianness cc
@@ -478,7 +513,12 @@ mkTarget opts = do
                    , tgtRanlib = ranlib
                    , tgtNm = nm
                    , tgtMergeObjs = mergeObjs
+                   , tgtLlc = llc
+                   , tgtOpt = opt
+                   , tgtLlvmAs = llvmAs
                    , tgtWindres = windres
+                   , tgtOtool = otool
+                   , tgtInstallNameTool = installNameTool
                    , tgtWordSize
                    , tgtEndianness
                    , tgtUnregisterised


=====================================
utils/ghc-toolchain/src/GHC/Toolchain/Target.hs
=====================================
@@ -72,8 +72,18 @@ data Target = Target
     , tgtMergeObjs :: Maybe MergeObjs
     -- ^ We don't need a merge objects tool if we @Ar@ supports @-L@
 
+      -- LLVM backend toolchain
+    , tgtLlc :: Maybe Program
+    , tgtOpt :: Maybe Program
+    , tgtLlvmAs :: Maybe Program
+    -- ^ assembler used to assemble LLVM backend output; typically @clang@
+
       -- Windows-specific tools
     , tgtWindres :: Maybe Program
+
+      -- Darwin-specific tools
+    , tgtOtool   :: Maybe Program
+    , tgtInstallNameTool :: Maybe Program
     }
     deriving (Read, Eq, Ord)
 
@@ -121,6 +131,11 @@ instance Show Target where
     , ", tgtRanlib = " ++ show tgtRanlib
     , ", tgtNm = " ++ show tgtNm
     , ", tgtMergeObjs = " ++ show tgtMergeObjs
+    , ", tgtLlc = " ++ show tgtLlc
+    , ", tgtOpt = " ++ show tgtOpt
+    , ", tgtLlvmAs = " ++ show tgtLlvmAs
     , ", tgtWindres = " ++ show tgtWindres
+    , ", tgtOtool = " ++ show tgtOtool
+    , ", tgtInstallNameTool = " ++ show tgtInstallNameTool
     , "}"
     ]



View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/compare/162094c9790a5c1b6154a118bae8b765b83f79a3...5ed3015e94abc1bca775d68b78d7f43860c8e275

-- 
View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/compare/162094c9790a5c1b6154a118bae8b765b83f79a3...5ed3015e94abc1bca775d68b78d7f43860c8e275
You're receiving this email because of your account on gitlab.haskell.org.


-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.haskell.org/pipermail/ghc-commits/attachments/20250311/e5e43791/attachment-0001.html>


More information about the ghc-commits mailing list