aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorgingerBill <gingerBill@users.noreply.github.com>2020-03-29 14:32:42 +0100
committerGitHub <noreply@github.com>2020-03-29 14:32:42 +0100
commit1524852ffcb10ca42334d64a015830e058f6d688 (patch)
treed84e5682b7e43f5d60b9aaa832b3742941aa7b1a /src
parent1b3ee7153cd4afdb1b6f2689cd4d6c6f41ccc9fc (diff)
parent957e6f7f085887d0887937acacba0e89870df32e (diff)
Merge pull request #600 from kevinw/master
Add a missing space after /LIBPATH linker options.
Diffstat (limited to 'src')
-rw-r--r--src/main.cpp4
1 files 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 != "") {