mirror of
https://github.com/odin-lang/Odin.git
synced 2026-06-07 19:14:19 +00:00
fix: escape object files with single quotes during linking
This commit is contained in:
@@ -704,12 +704,12 @@ try_cross_linking:;
|
||||
return result;
|
||||
}
|
||||
|
||||
object_files = gb_string_append_fmt(object_files, "\"%.*s\" ", LIT(android_glue_static_lib));
|
||||
object_files = gb_string_append_fmt(object_files, "\'%.*s\' ", LIT(android_glue_static_lib));
|
||||
}
|
||||
|
||||
|
||||
for (String object_path : gen->output_object_paths) {
|
||||
object_files = gb_string_append_fmt(object_files, "\"%.*s\" ", LIT(object_path));
|
||||
object_files = gb_string_append_fmt(object_files, "\'%.*s\' ", LIT(object_path));
|
||||
}
|
||||
|
||||
gbString link_settings = gb_string_make_reserve(heap_allocator(), 32);
|
||||
|
||||
Reference in New Issue
Block a user