mirror of
https://github.com/odin-lang/Odin.git
synced 2026-02-16 08:04:07 +00:00
Fix i128 division
This commit is contained in:
@@ -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 "
|
||||
|
||||
Reference in New Issue
Block a user