diff options
author | Sylvain Henry <sylvain@haskus.fr> | 2021-11-04 18:27:31 +0100 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2021-11-09 10:02:46 -0500 |
commit | 79a26df1475505ee1e87eb7fda04e5fefdf6aa4c (patch) | |
tree | a8d1845dfbcaf6f86252932899529f465c585549 /rts | |
parent | bc498fdfa482dfe796e3a12ac8f9d71913930740 (diff) | |
download | haskell-79a26df1475505ee1e87eb7fda04e5fefdf6aa4c.tar.gz |
Don't expose bignum backend in ghc --info (#20495)
GHC is bignum backend agnostic and shouldn't report this information as
in the future ghc-bignum will be reinstallable potentially with a
different backend that GHC is unaware of. Moreover as #20495 shows the
returned information may be wrong currently.
Diffstat (limited to 'rts')
-rw-r--r-- | rts/include/ghc.mk | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/rts/include/ghc.mk b/rts/include/ghc.mk index a04d5dbc1c..f76f549984 100644 --- a/rts/include/ghc.mk +++ b/rts/include/ghc.mk @@ -272,7 +272,6 @@ $(includes_SETTINGS) : rts/include/Makefile | $$(dir $$@)/. @echo ',("LLVM opt command", "$(SettingsOptCommand)")' >> $@ @echo ',("LLVM clang command", "$(SettingsClangCommand)")' >> $@ @echo - @echo ',("bignum backend", "$(BIGNUM_BACKEND)")' >> $@ @echo ',("Use interpreter", "$(GhcWithInterpreter)")' >> $@ @echo ',("Support SMP", "$(GhcWithSMP)")' >> $@ @echo ',("RTS ways", "$(GhcRTSWays)")' >> $@ |