diff options
author | Sylvain Henry <sylvain@haskus.fr> | 2022-11-09 14:04:16 +0100 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2023-01-25 14:47:41 -0500 |
commit | 288fa0179a2f54e4594afe184eac71cc85c46643 (patch) | |
tree | faacdddb49678223c04e24c0d62fe60091365705 | |
parent | 48131ee2d8ba7074a4c2763a32c12df105305a75 (diff) | |
download | haskell-288fa0179a2f54e4594afe184eac71cc85c46643.tar.gz |
Fix RTS build on Windows
This change fixes a cross-compilation issue from ArchLinux to Windows
because these symbols weren't found.
-rw-r--r-- | rts/RtsSymbols.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/rts/RtsSymbols.c b/rts/RtsSymbols.c index 8e986f8d12..357ea4ddce 100644 --- a/rts/RtsSymbols.c +++ b/rts/RtsSymbols.c @@ -170,8 +170,6 @@ extern char **environ; SymI_NeedsProto(__mingw_module_is_dll) \ RTS_WIN32_ONLY(SymI_NeedsProto(___chkstk_ms)) \ RTS_WIN64_ONLY(SymI_NeedsProto(___chkstk_ms)) \ - RTS_WIN64_ONLY(SymI_HasProto(__stdio_common_vswprintf_s)) \ - RTS_WIN64_ONLY(SymI_HasProto(__stdio_common_vswprintf)) \ RTS_WIN64_ONLY(SymI_HasProto(_errno)) \ /* see Note [Symbols for MinGW's printf] */ \ SymI_HasProto(_lock_file) \ |