From 9382c67e486e00d8c924f6d423d95bd1eda7c6ad Mon Sep 17 00:00:00 2001 From: Yogthos Date: Thu, 2 Jul 2026 15:43:27 -0400 Subject: [PATCH] Windows link set gains -luuid (FOLDERID_* GUIDs) --- host/chez/build.ss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/host/chez/build.ss b/host/chez/build.ss index 722ff7c..abe0312 100644 --- a/host/chez/build.ss +++ b/host/chez/build.ss @@ -121,7 +121,7 @@ ;; Windows (ta6nt, MinGW-w64 under MSYS2): the Chez kernel pulls in ;; compression, winsock, COM/UUID, and the registry. (bld-nt? - "-llz4 -lz -lws2_32 -lrpcrt4 -lole32 -ladvapi32 -luser32 -lshell32 -lm") + "-llz4 -lz -lws2_32 -lrpcrt4 -lole32 -luuid -ladvapi32 -luser32 -lshell32 -lm") ;; Linux: the Chez kernel pulls in compression (lz4/z), the expression ;; editor (ncurses + terminfo), threads, dlopen, libuuid, and clock_gettime. (else "-llz4 -lz -lncurses -ltinfo -ldl -lm -lpthread -luuid -lrt")))