diff options
author | Ben Gamari <ben@smart-cactus.org> | 2022-03-29 12:26:50 -0400 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2022-04-25 10:19:29 -0400 |
commit | 9420d26b4b9dd42238d3ec2a92abe0552d37775e (patch) | |
tree | 83ab1953b68e9a6bf17dfcdefe66894411d1a197 /compiler/GHC/Settings.hs | |
parent | cb71226f9537e542c6eadb90d8006e525c941605 (diff) | |
download | haskell-9420d26b4b9dd42238d3ec2a92abe0552d37775e.tar.gz |
Drop libtool path from settings file
GHC no longers uses libtool for linking and therefore this is no longer
necessary.
Diffstat (limited to 'compiler/GHC/Settings.hs')
-rw-r--r-- | compiler/GHC/Settings.hs | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/compiler/GHC/Settings.hs b/compiler/GHC/Settings.hs index 92bfa75699..e6226696dc 100644 --- a/compiler/GHC/Settings.hs +++ b/compiler/GHC/Settings.hs @@ -34,7 +34,6 @@ module GHC.Settings , sPgm_dll , sPgm_T , sPgm_windres - , sPgm_libtool , sPgm_ar , sPgm_otool , sPgm_install_name_tool @@ -108,7 +107,6 @@ data ToolSettings = ToolSettings , toolSettings_pgm_dll :: (String, [Option]) , toolSettings_pgm_T :: String , toolSettings_pgm_windres :: String - , toolSettings_pgm_libtool :: String , toolSettings_pgm_ar :: String , toolSettings_pgm_otool :: String , toolSettings_pgm_install_name_tool :: String @@ -222,8 +220,6 @@ sPgm_T :: Settings -> String sPgm_T = toolSettings_pgm_T . sToolSettings sPgm_windres :: Settings -> String sPgm_windres = toolSettings_pgm_windres . sToolSettings -sPgm_libtool :: Settings -> String -sPgm_libtool = toolSettings_pgm_libtool . sToolSettings sPgm_ar :: Settings -> String sPgm_ar = toolSettings_pgm_ar . sToolSettings sPgm_otool :: Settings -> String |