mirror of
https://github.com/Ed94/Odin.git
synced 2026-06-20 12:44:59 -07:00
Begin work on making packages import assembly sort files (.S)
This commit is contained in:
@@ -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 = {};
|
||||
|
||||
Reference in New Issue
Block a user