fix: correctly import memcmp.zig in compiler-rt
cmp.zig was accidently being referenced twice, rather than importing memcmp.zig. This means that its symbols were also not included in the generated compiler-rt output.
This commit is contained in:
committed by
Jakub Konka
parent
09236d29b7
commit
cdf7e7dba9
@@ -212,6 +212,6 @@ comptime {
|
||||
_ = @import("compiler_rt/memcpy.zig");
|
||||
_ = @import("compiler_rt/memset.zig");
|
||||
_ = @import("compiler_rt/memmove.zig");
|
||||
_ = @import("compiler_rt/cmp.zig");
|
||||
_ = @import("compiler_rt/memcmp.zig");
|
||||
_ = @import("compiler_rt/bcmp.zig");
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user