| ... | @@ -5890,7 +5890,9 @@ pub fn hasObjectExt(filename: []const u8) bool { | ... | @@ -5890,7 +5890,9 @@ pub fn hasObjectExt(filename: []const u8) bool { |
| 5890 | } | 5890 | } |
| 5891 | | 5891 | |
| 5892 | pub fn hasStaticLibraryExt(filename: []const u8) bool { | 5892 | pub fn hasStaticLibraryExt(filename: []const u8) bool { |
| 5893 | return mem.endsWith(u8, filename, ".a") or mem.endsWith(u8, filename, ".lib"); | 5893 | return mem.endsWith(u8, filename, ".a") or |
| | 5894 | mem.endsWith(u8, filename, ".lib") or |
| | 5895 | mem.endsWith(u8, filename, ".rlib"); |
| 5894 | } | 5896 | } |
| 5895 | | 5897 | |
| 5896 | pub fn hasCExt(filename: []const u8) bool { | 5898 | pub fn hasCExt(filename: []const u8) bool { |