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

Ben Gamari (@bgamari) gitlab at gitlab.haskell.org
Tue Mar 4 16:08:55 UTC 2025



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


Commits:
8580020a by Ben Gamari at 2025-03-04T11:08:41-05:00
ghc-toolchain: Add support for otool, install-name-tool

Fixes part of ghc#23675.

- - - - -
551d4623 by Ben Gamari at 2025-03-04T11:08:44-05:00
ghc-toolchain: Add support for llc, opt, llvm-as

Fixes #23675.

- - - - -


5 changed files:

- hadrian/cfg/default.host.target.in
- hadrian/cfg/default.target.in
- 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
=====================================
@@ -39,4 +39,6 @@ Target
 , tgtNm = Nm {nmProgram = Program {prgPath = "", prgFlags = []}}
 , tgtMergeObjs = Just (MergeObjs {mergeObjsProgram = Program {prgPath = "@LD_STAGE0@", prgFlags = ["-r"]}, mergeObjsSupportsResponseFiles = False})
 , 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/prep_target_file.m4
=====================================
@@ -148,7 +148,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_SIMPLE_PROGRAM([LlvmAsCmd])
     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,11 @@ data Opts = Opts
     , optNm        :: ProgOpt
     , optReadelf   :: ProgOpt
     , optMergeObjs :: ProgOpt
+    , optLlc       :: ProgOpt
+    , optOpt       :: 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 +103,12 @@ emptyOpts = Opts
     , optNm        = po0
     , optReadelf   = po0
     , optMergeObjs = po0
+    , optLlc       = po0
+    , optOpt       = po0
     , optWindres   = po0
     , optLd        = po0
+    , optOtool     = po0
+    , optInstallNameTool = po0
     , optUnregisterised = Nothing
     , optTablesNextToCode = Nothing
     , optUseLibFFIForAdjustors = Nothing
@@ -112,7 +120,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,
+    _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 +135,12 @@ _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})
 _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 {optInstallName=x})
 
 _optTriple :: Lens Opts (Maybe String)
 _optTriple = Lens optTriple (\x o -> o {optTriple=x})
@@ -183,8 +196,12 @@ 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 "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 +451,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 +464,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 +509,11 @@ mkTarget opts = do
                    , tgtRanlib = ranlib
                    , tgtNm = nm
                    , tgtMergeObjs = mergeObjs
+                   , tgtLlc = llc
+                   , tgtOpt = opt
                    , 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 :: Program
+    , tgtOpt :: Program
+    , tgtLlvmAs :: 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/209bc8bc8e681e2a96a29cfc463fc4a3f5e79437...551d46231483a324a663c64e3c627b41290eab49

-- 
View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/compare/209bc8bc8e681e2a96a29cfc463fc4a3f5e79437...551d46231483a324a663c64e3c627b41290eab49
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/20250304/b1fb0d34/attachment-0001.html>


More information about the ghc-commits mailing list