Skip to content

Commit bed4bfa

Browse files
SamTebbs33andrewrk
authored andcommitted
Replace code occurences of --override-std-dir with --override-lib-dir
1 parent 5026db1 commit bed4bfa

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

lib/std/crypto/benchmark.zig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// zig run benchmark.zig --release-fast --override-std-dir ..
1+
// zig run benchmark.zig --release-fast --override-lib-dir ..
22

33
const builtin = @import("builtin");
44
const std = @import("../std.zig");

lib/std/hash/benchmark.zig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// zig run benchmark.zig --release-fast --override-std-dir ..
1+
// zig run benchmark.zig --release-fast --override-lib-dir ..
22

33
const builtin = @import("builtin");
44
const std = @import("std");

lib/std/os.zig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ const dl = @import("dynamic_library.zig");
2424
const MAX_PATH_BYTES = std.fs.MAX_PATH_BYTES;
2525

2626
comptime {
27-
assert(@import("std") == std); // std lib tests require --override-std-dir
27+
assert(@import("std") == std); // std lib tests require --override-lib-dir
2828
}
2929

3030
pub const darwin = @import("os/darwin.zig");

0 commit comments

Comments
 (0)