From 9723d43c52caf3fd70d961f6752954ce525d386e Mon Sep 17 00:00:00 2001 From: Oldes Date: Wed, 13 Jan 2021 18:36:47 +0100 Subject: [PATCH] FIX: add missing library dependency for `request-dir` function on Windows --- src/tools/systems.reb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tools/systems.reb b/src/tools/systems.reb index 1e176da4d5..465d0fb002 100644 --- a/src/tools/systems.reb +++ b/src/tools/systems.reb @@ -75,7 +75,7 @@ linker-flags: [ LLOG: "-llog" ; on Android, link with liblog.so ARC: "-arch i386" ; x86 32 bit architecture (OSX) M32: "-m32" ; use 32-bit memory model (Linux x64) - W32: "-lwsock32 -lcomdlg32 -lgdi32 -lwinmm -lComctl32 -lUxTheme -lopengl32" + W32: "-lwsock32 -lcomdlg32 -lgdi32 -lwinmm -lComctl32 -lUxTheme -lopengl32 -lOle32" WIN: "-mwindows" ; build as Windows GUI binary CON: "-mconsole" ; build as Windows Console binary S4M: "-Wl,--stack=4194300"