mirror of
https://github.com/ziglang/zig.git
synced 2026-02-14 13:30:45 +00:00
fix unknown file extension with rmeta
This commit is contained in:
parent
7575f21212
commit
414fc3b207
@ -5885,7 +5885,8 @@ pub const FileExt = enum {
|
||||
pub fn hasObjectExt(filename: []const u8) bool {
|
||||
return mem.endsWith(u8, filename, ".o") or
|
||||
mem.endsWith(u8, filename, ".lo") or
|
||||
mem.endsWith(u8, filename, ".obj");
|
||||
mem.endsWith(u8, filename, ".obj") or
|
||||
mem.endsWith(u8, filename, ".rmeta");
|
||||
}
|
||||
|
||||
pub fn hasStaticLibraryExt(filename: []const u8) bool {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user