mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-06 15:48:51 +00:00
fix: escape object files with single quotes during linking
This commit is contained in:
+2
-2
@@ -704,12 +704,12 @@ try_cross_linking:;
|
|||||||
return result;
|
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) {
|
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);
|
gbString link_settings = gb_string_make_reserve(heap_allocator(), 32);
|
||||||
|
|||||||
Reference in New Issue
Block a user