diff options
| author | Ginger Bill <bill@gingerbill.org> | 2017-08-10 23:46:12 +0100 |
|---|---|---|
| committer | Ginger Bill <bill@gingerbill.org> | 2017-08-10 23:46:12 +0100 |
| commit | 0fff6a2b74fb415e30a6b9ae104e204ffe799cbe (patch) | |
| tree | 3349bbfc0dea7ac039b1944a518cfa412e448961 /src/main.cpp | |
| parent | f4c04052212e0ee17aa1ae9c7d8ada0727f269b1 (diff) | |
Fix i128 division
Diffstat (limited to 'src/main.cpp')
| -rw-r--r-- | src/main.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/main.cpp b/src/main.cpp index 729ba9fc5..0301b1186 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -451,7 +451,6 @@ int main(int arg_count, char **arg_ptr) { Array<String> args = setup_args(arg_count, arg_ptr); - #if 1 String init_filename = {}; @@ -655,7 +654,7 @@ int main(int arg_count, char **arg_ptr) { } exit_code = system_exec_command_line_app("msvc-link", true, - "link \"%.*s\".obj -OUT:\"%.*s.%s\" %s " + "link \"%.*s.obj\" -OUT:\"%.*s.%s\" %s " "/defaultlib:libcmt " // "/nodefaultlib " "/nologo /incremental:no /opt:ref /subsystem:CONSOLE " @@ -757,7 +756,7 @@ int main(int arg_count, char **arg_ptr) { #endif exit_code = system_exec_command_line_app("ld-link", true, - "%s \"%.*s\".o -o \"%.*s%s\" %s " + "%s \"%.*s.o\" -o \"%.*s%s\" %s " "-lc -lm " " %.*s " " %s " |