| ... | @@ -5884,7 +5884,9 @@ pub const FileExt = enum { | ... | @@ -5884,7 +5884,9 @@ pub const FileExt = enum { |
| 5884 | }; | 5884 | }; |
| 5885 | | 5885 | |
| 5886 | pub fn hasObjectExt(filename: []const u8) bool { | 5886 | pub fn hasObjectExt(filename: []const u8) bool { |
| 5887 | return mem.endsWith(u8, filename, ".o") or mem.endsWith(u8, filename, ".obj"); | 5887 | return mem.endsWith(u8, filename, ".o") or |
| | 5888 | mem.endsWith(u8, filename, ".lo") or |
| | 5889 | mem.endsWith(u8, filename, ".obj"); |
| 5888 | } | 5890 | } |
| 5889 | | 5891 | |
| 5890 | pub fn hasStaticLibraryExt(filename: []const u8) bool { | 5892 | pub fn hasStaticLibraryExt(filename: []const u8) bool { |