diff options
author | Reid Barton <rwbarton@gmail.com> | 2015-10-27 12:26:54 -0500 |
---|---|---|
committer | Austin Seipp <austin@well-typed.com> | 2015-10-27 12:27:00 -0500 |
commit | 9efa56dd26e0ec05823bd367e69e21da3c35af2b (patch) | |
tree | 0f57f93e3c33dc76bdfa7c1266901c475b0cbad0 /rts | |
parent | 31704adc82c3a1e48ac05c51f02933fd996b642a (diff) | |
download | haskell-9efa56dd26e0ec05823bd367e69e21da3c35af2b.tar.gz |
Fix the DYNAMIC_GHC_PROGRAMS=NO build on Mac/Windows
LEADING_UNDERSCORE is defined in a header file, so we need to #include
that file where we use LEADING_UNDERSCORE.
Reviewed By: austin
Differential Revision: https://phabricator.haskell.org/D1382
Diffstat (limited to 'rts')
-rw-r--r-- | rts/RtsSymbols.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/rts/RtsSymbols.h b/rts/RtsSymbols.h index cc02a989b4..10c158c027 100644 --- a/rts/RtsSymbols.h +++ b/rts/RtsSymbols.h @@ -9,6 +9,7 @@ #ifndef RTS_SYMBOLS_H #define RTS_SYMBOLS_H +#include "ghcautoconf.h" #ifdef LEADING_UNDERSCORE #define MAYBE_LEADING_UNDERSCORE_STR(s) ("_" s) |