diff options
author | Ben Gamari <ben@smart-cactus.org> | 2018-10-30 14:47:53 -0400 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2018-10-30 16:12:00 -0400 |
commit | 9cbf6f2baf793e361d41b9c36497c5601ff22253 (patch) | |
tree | a6fcb61e43f95c23d046301edf41a727959054ad /rts/linker/Elf.h | |
parent | 7e1690d17b39a9491e46b12297adad8d0c89b550 (diff) | |
download | haskell-9cbf6f2baf793e361d41b9c36497c5601ff22253.tar.gz |
Revert "Allocate bss section within proper range of other sections"
This reverts commit e019ec94f12268dd92ea5d5204e9e57e7ebf10ca.
This sadly breaks the external interpreter on i386.
For instance, see https://circleci.com/gh/ghc/ghc/10925.
Diffstat (limited to 'rts/linker/Elf.h')
-rw-r--r-- | rts/linker/Elf.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rts/linker/Elf.h b/rts/linker/Elf.h index 30c993b98c..b0d6638e6a 100644 --- a/rts/linker/Elf.h +++ b/rts/linker/Elf.h @@ -13,6 +13,6 @@ int ocVerifyImage_ELF ( ObjectCode* oc ); int ocGetNames_ELF ( ObjectCode* oc ); int ocResolve_ELF ( ObjectCode* oc ); int ocRunInit_ELF ( ObjectCode* oc ); -int ocAllocateExtras_ELF ( ObjectCode *oc ); +int ocAllocateSymbolExtras_ELF( ObjectCode *oc ); #include "EndPrivate.h" |