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