diff options
author | John Ericson <John.Ericson@Obsidian.Systems> | 2021-10-27 04:06:46 +0000 |
---|---|---|
committer | John Ericson <John.Ericson@Obsidian.Systems> | 2021-10-27 20:55:50 +0000 |
commit | 5a6f3c285b986891b8b56f8f1b29901892ca4e15 (patch) | |
tree | 55addb41e4608890c406b93456c4b02465cf060d /configure.ac | |
parent | 638f65482ca5265c268aa97abfcc14cdc27e46ba (diff) | |
download | haskell-wip/clean-compiler-includes.tar.gz |
Avoid GHC_STAGE and other include bitswip/clean-compiler-includes
We should strive to make our includes in terms of the RTS as much as
possible. One place there that is not possible, the llvm version, we
make a new tiny header
Stage numbers are somewhat arbitrary, if we simple need a newer RTS, we
should say so.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 17d87315f5..0cec77e19a 100644 --- a/configure.ac +++ b/configure.ac @@ -71,8 +71,11 @@ AC_PREREQ([2.69]) # ------------------------------------------------------------------------- # Prepare to generate the following header files # -# + +# This one is autogenerated by autoheader. AC_CONFIG_HEADER(mk/config.h) +# This one is manually maintained. +AC_CONFIG_HEADER(compiler/ghc-llvm-version.h) # No, semi-sadly, we don't do `--srcdir'... if test x"$srcdir" != 'x.' ; then |