authorgravatar for kcbanner@gmail.comCasey Banner <kcbanner@gmail.com> 2026-06-08 00:46:25-04:00
committergravatar for kcbanner@gmail.comCasey Banner <kcbanner@gmail.com> 2026-06-23 00:27:17-04:00
log38d06fdf0e9b9eb2831675b550e3ba7e41b74908
tree36438ef85eba4fb10ee0cdc138af5aace834b96d
parentc7bb3a39b781fdecb74ae8df0537516ed1d31826

MappedFile: doc fixup

test/standalone/shared_library: remove install step

2 files changed, 1 insertions(+), 4 deletions(-)

src/link/MappedFile.zig+1-1
......@@ -382,7 +382,7 @@ pub const Node = extern struct {
382382 }
383383
384384 /// Shrink a node to `size`, exactly.
385 /// If the new size can't contain all the children, returns error.ShrinkImpossible.
385 /// Asserts that the new size can contain all the children.
386386 /// If `shift_next` is set, then the following node is shifted backwards into
387387 /// the free space as much as alignment allows.
388388 /// Asserts that `size` is >= the end of the last child node.
test/standalone/shared_library/build.zig-3
......@@ -76,9 +76,6 @@ pub fn build(b: *std.Build) void {
7676 });
7777 exe.root_module.linkLibrary(lib);
7878
79 b.getInstallStep().dependOn(&b.addInstallArtifact(lib, .{}).step);
80 b.getInstallStep().dependOn(&b.addInstallArtifact(exe, .{}).step);
81
8279 const run_cmd = b.addRunArtifact(exe);
8380 test_step.dependOn(&run_cmd.step);
8481 }