diff options
author | John Ericson <git@JohnEricson.me> | 2019-09-03 21:10:59 -0400 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2019-09-05 18:50:56 -0400 |
commit | b55ee979d32df938eee9c4c02c189f8be267e8a1 (patch) | |
tree | c1d1006c0ddd76f85c05a9258d687a32d2f6ce96 /includes | |
parent | f96d57b800f10ab194897133f3c0d11e4fbc71b4 (diff) | |
download | haskell-b55ee979d32df938eee9c4c02c189f8be267e8a1.tar.gz |
Make sure all boolean settings entries use `YES` / `NO`
Some where using `True` / `False`, a legacy of when they were in
`Config.hs`. See #16914 / d238d3062a9858 for a similar problem.
Also clean up the configure variables names for consistency and clarity
while we're at it. "Target" makes clear we are talking about outputted
code, not where GHC itself runs.
Diffstat (limited to 'includes')
-rw-r--r-- | includes/ghc.mk | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/includes/ghc.mk b/includes/ghc.mk index ad51234143..81e7483756 100644 --- a/includes/ghc.mk +++ b/includes/ghc.mk @@ -196,11 +196,11 @@ $(includes_SETTINGS) : includes/Makefile | $$(dir $$@)/. @echo ',("target os", "$(HaskellTargetOs)")' >> $@ @echo ',("target arch", "$(HaskellTargetArch)")' >> $@ @echo ',("target word size", "$(TargetWordSize)")' >> $@ - @echo ',("target has GNU nonexec stack", "$(HaskellHaveGnuNonexecStack)")' >> $@ - @echo ',("target has .ident directive", "$(HaskellHaveIdentDirective)")' >> $@ - @echo ',("target has subsections via symbols", "$(HaskellHaveSubsectionsViaSymbols)")' >> $@ - @echo ',("target has RTS linker", "$(HaskellHaveRTSLinker)")' >> $@ - @echo ',("Unregisterised", "$(Unregisterised)")' >> $@ + @echo ',("target has GNU nonexec stack", "$(TargetHasGnuNonexecStack)")' >> $@ + @echo ',("target has .ident directive", "$(TargetHasIdentDirective)")' >> $@ + @echo ',("target has subsections via symbols", "$(TargetHasSubsectionsViaSymbols)")' >> $@ + @echo ',("target has RTS linker", "$(TargetHasRTSLinker)")' >> $@ + @echo ',("Unregisterised", "$(GhcUnregisterised)")' >> $@ @echo ',("LLVM target", "$(LLVMTarget_CPP)")' >> $@ @echo ',("LLVM llc command", "$(SettingsLlcCommand)")' >> $@ @echo ',("LLVM opt command", "$(SettingsOptCommand)")' >> $@ |