diff options
author | Ben Gamari <ben@smart-cactus.org> | 2022-10-28 19:02:16 -0400 |
---|---|---|
committer | John Ericson <John.Ericson@Obsidian.Systems> | 2023-01-02 02:52:48 -0500 |
commit | 7beb9fff1bee1ccbf7f2258ce527b8d5df2a85ea (patch) | |
tree | 2868fd769f2a528e67e6e6fa2760b3dab77d5252 /compiler/GHC/Platform.hs | |
parent | 7b2cf80717a6b16e3f6135c6c6905bd5d3bbde72 (diff) | |
download | haskell-wip/rts-configure-2.tar.gz |
rts configure scriptwip/rts-configure-2
Need to use CPP not `if` in rts.buildinfo
Bump cabal submodule to include
https://github.com/haskell/cabal/pull/8565
Diffstat (limited to 'compiler/GHC/Platform.hs')
-rw-r--r-- | compiler/GHC/Platform.hs | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/compiler/GHC/Platform.hs b/compiler/GHC/Platform.hs index a630e0c1d3..2faef1599f 100644 --- a/compiler/GHC/Platform.hs +++ b/compiler/GHC/Platform.hs @@ -79,10 +79,6 @@ data Platform = Platform -- ^ Determines whether we will be compiling info tables that reside just -- before the entry code, or with an indirection to the entry code. See -- TABLES_NEXT_TO_CODE in rts/include/rts/storage/InfoTables.h. - , platformHasLibm :: !Bool - -- ^ Some platforms require that we explicitly link against @libm@ if any - -- math-y things are used (which we assume to include all programs). See - -- #14022. , platform_constants :: !(Maybe PlatformConstants) -- ^ Constants such as structure offsets, type sizes, etc. @@ -136,7 +132,6 @@ genericPlatform = Platform , platformHasGnuNonexecStack = False , platformHasIdentDirective = False , platformHasSubsectionsViaSymbols= False - , platformHasLibm = False , platformIsCrossCompiling = False , platformLeadingUnderscore = False , platformTablesNextToCode = True |