aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgingerBill <bill@gingerbill.org>2020-03-30 12:21:51 +0100
committergingerBill <bill@gingerbill.org>2020-03-30 12:21:51 +0100
commit0804be5d812e728500b1489bb5cd2d0271fcf0d1 (patch)
treeacb4361a926453c34f6fd408ce8d041fbd3cf5bc
parent3c189d2cf6b368a46d876196221d012f96786f41 (diff)
parent1524852ffcb10ca42334d64a015830e058f6d688 (diff)
Merge branch 'master' of https://github.com/odin-lang/Odin
-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 != "") {