| author | |
| committer | |
| log | 414fc3b207b2447f2ea131b57495b3480a3b4a94 |
| tree | a2b900f3b97b4badcfb51282c2927fd9f68601f4 |
| parent | 7575f212128df84c8b86ee3c89d940313380d902 |
1 files changed, 2 insertions(+), 1 deletions(-)
src/Compilation.zig+2-1| ... | ... | @@ -5885,7 +5885,8 @@ pub const FileExt = enum { |
| 5885 | 5885 | pub fn hasObjectExt(filename: []const u8) bool { |
| 5886 | 5886 | return mem.endsWith(u8, filename, ".o") or |
| 5887 | 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 | 5892 | pub fn hasStaticLibraryExt(filename: []const u8) bool { |