From 61246d713da19d46247db8ea7faf2db0a96f2fc9 Mon Sep 17 00:00:00 2001 From: Christoffer Lerno Date: Sun, 25 Aug 2024 20:30:21 +0200 Subject: [PATCH] Print linking in CI and fix win linking. --- src/compiler/linker.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/compiler/linker.c b/src/compiler/linker.c index 86b3ba211..8aefbf5b9 100644 --- a/src/compiler/linker.c +++ b/src/compiler/linker.c @@ -566,7 +566,7 @@ static bool linker_setup(const char ***args_ref, const char **files_to_link, uns FOREACH(const char *, dir, compiler.build.linker_libdirs) { - add_concat_file_arg(lib_path_opt, dir); + add_concat_quote_arg(lib_path_opt, dir); } FOREACH(const char *, arg, compiler.build.link_args) {