From 957e6f7f085887d0887937acacba0e89870df32e Mon Sep 17 00:00:00 2001 From: Kevin Watters Date: Sat, 28 Mar 2020 21:05:32 -0400 Subject: [PATCH] Add a missing space after /LIBPATH linker options. --- src/main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main.cpp b/src/main.cpp index 46364d8d6..3548bd9a1 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -198,9 +198,9 @@ i32 linker_stage(lbGenerator *gen) { if (build_context.is_dll) { output_ext = "dll"; - link_settings = gb_string_append_fmt(link_settings, "/DLL"); + link_settings = gb_string_append_fmt(link_settings, " /DLL"); } else { - link_settings = gb_string_append_fmt(link_settings, "/ENTRY:mainCRTStartup"); + link_settings = gb_string_append_fmt(link_settings, " /ENTRY:mainCRTStartup"); } if (build_context.pdb_filepath != "") {