Begin work on making packages import assembly sort files (.S)

This commit is contained in:
gingerBill
2020-10-16 15:32:09 +01:00
parent 063c0548b0
commit b1bdd95f19
3 changed files with 75 additions and 10 deletions
+1 -3
View File
@@ -291,10 +291,8 @@ TargetArchKind get_target_arch_from_string(String str) {
bool is_excluded_target_filename(String name) {
String const ext = str_lit(".odin");
String original_name = name;
GB_ASSERT(string_ends_with(name, ext));
name = substring(name, 0, name.len-ext.len);
name = remove_extension_from_path(name);
String str1 = {};
String str2 = {};