[Git][ghc/ghc][master] rts: fix missing Arena.h symbols in RtsSymbols.c
Marge Bot (@marge-bot)
gitlab at gitlab.haskell.org
Thu Nov 24 22:25:46 UTC 2022
Marge Bot pushed to branch master at Glasgow Haskell Compiler / GHC
Commits:
d198a19a by Cheng Shao at 2022-11-24T17:25:29-05:00
rts: fix missing Arena.h symbols in RtsSymbols.c
It was an unfortunate oversight in !8961 and broke devel2 builds.
- - - - -
1 changed file:
- rts/RtsSymbols.c
Changes:
=====================================
rts/RtsSymbols.c
=====================================
@@ -16,6 +16,7 @@
#include "sm/Storage.h"
#include "sm/NonMovingMark.h"
+#include "Arena.h"
#include <stdbool.h>
#if !defined(mingw32_HOST_OS) && defined(HAVE_SIGNAL_H)
@@ -1058,6 +1059,9 @@ extern char **environ;
SymI_HasProto(stg_newPromptTagzh) \
SymI_HasProto(stg_promptzh) \
SymI_HasProto(stg_control0zh) \
+ SymI_HasProto(newArena) \
+ SymI_HasProto(arenaAlloc) \
+ SymI_HasProto(arenaFree) \
RTS_USER_SIGNALS_SYMBOLS \
RTS_INTCHAR_SYMBOLS
View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/commit/d198a19ae08fec797121e3907ca93c5840db0c53
--
View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/commit/d198a19ae08fec797121e3907ca93c5840db0c53
You're receiving this email because of your account on gitlab.haskell.org.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.haskell.org/pipermail/ghc-commits/attachments/20221124/c645a640/attachment.html>
More information about the ghc-commits
mailing list