diff options
author | Joachim Breitner <mail@joachim-breitner.de> | 2019-01-20 19:25:26 -0500 |
---|---|---|
committer | John Ericson <git@johnericson.me> | 2020-03-26 12:37:09 -0400 |
commit | 1c446220250dcada51d4bb33a0cc7d8ce572e8b6 (patch) | |
tree | bb35239515276dd4398a9af8f3c1eeb490ac26ea /compiler/ghc.mk | |
parent | f51efc4bf5f20d1df3d11a2bb4c147f416367ae4 (diff) | |
download | haskell-1c446220250dcada51d4bb33a0cc7d8ce572e8b6.tar.gz |
Use run-time tablesNextToCode in compiler exclusively (#15548)
Summary:
- There is no more use of the TABLES_NEXT_TO_CODE CPP macro in
`compiler/`. GHCI_TABLES_NEXT_TO_CODE is also removed entirely.
The field within `PlatformMisc` within `DynFlags` is used instead.
- The field is still not exposed as a CLI flag. We might consider some
way to ensure the right RTS / libraries are used before doing that.
Original reviewers:
Original subscribers: TerrorJack, rwbarton, carter
Original Differential Revision: https://phabricator.haskell.org/D5082
Diffstat (limited to 'compiler/ghc.mk')
-rw-r--r-- | compiler/ghc.mk | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/compiler/ghc.mk b/compiler/ghc.mk index e37a285fed..5274d1a892 100644 --- a/compiler/ghc.mk +++ b/compiler/ghc.mk @@ -199,14 +199,6 @@ endif ifeq "$(GhcWithInterpreter)" "YES" compiler_stage2_CONFIGURE_OPTS += --flags=ghci -ifeq "$(TablesNextToCode)" "YES" -# Should GHCI be building info tables in the TABLES_NEXT_TO_CODE style -# or not? -# XXX This should logically be a CPP option, but there doesn't seem to -# be a flag for that -compiler_stage2_CONFIGURE_OPTS += --ghc-option=-DGHCI_TABLES_NEXT_TO_CODE -endif - # Should the debugger commands be enabled? ifeq "$(GhciWithDebugger)" "YES" compiler_stage2_CONFIGURE_OPTS += --ghc-option=-DDEBUGGER |