diff options
| author | Kevin Watters <kevinwatters@gmail.com> | 2020-03-28 21:05:32 -0400 |
|---|---|---|
| committer | Kevin Watters <kevinwatters@gmail.com> | 2020-03-28 21:05:32 -0400 |
| commit | 957e6f7f085887d0887937acacba0e89870df32e (patch) | |
| tree | d84e5682b7e43f5d60b9aaa832b3742941aa7b1a /src/main.cpp | |
| parent | 1b3ee7153cd4afdb1b6f2689cd4d6c6f41ccc9fc (diff) | |
Add a missing space after /LIBPATH linker options.
Diffstat (limited to 'src/main.cpp')
| -rw-r--r-- | src/main.cpp | 4 |
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 != "") { |