diff options
author | Ben Gamari <ben@smart-cactus.org> | 2020-11-23 15:20:39 -0500 |
---|---|---|
committer | Ben Gamari <ben@well-typed.com> | 2020-11-30 20:18:01 -0500 |
commit | ac2c9225af79962e11cef9a0bf613365acc6da29 (patch) | |
tree | 64e1466c761561a6804f0cdff529ec985ddabc31 /rts/LinkerInternals.h | |
parent | 52d40ae1c2ab335fb704db95e78d3f8175fb345e (diff) | |
download | haskell-wip/win32-m32.tar.gz |
rts/linker: Use m32 to allocate symbol extras in PEi386wip/win32-m32
Diffstat (limited to 'rts/LinkerInternals.h')
-rw-r--r-- | rts/LinkerInternals.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rts/LinkerInternals.h b/rts/LinkerInternals.h index cf8017a12f..695f65dbdb 100644 --- a/rts/LinkerInternals.h +++ b/rts/LinkerInternals.h @@ -173,7 +173,7 @@ typedef struct _Segment { * We use the m32 allocator for symbol extras on Windows and other mmap-using * platforms. */ -#if RTS_LINKER_USE_MMAP +#if RTS_LINKER_USE_MMAP || defined(mingw32_HOST_ARCH) #define NEED_M32 1 #endif |