commit cdf7e7dba9cbe80d71cc094b257447e5a9f70767 (tree)
parent 09236d29b7722d71533478aa7080706acde28d0d
Author: Luuk de Gram <luuk@degram.dev>
Date: Sat, 22 Oct 2022 14:02:16 +0200
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.
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/compiler_rt.zig b/lib/compiler_rt.zig
@@ -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");
}