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 {...@@ -382,7 +382,7 @@ pub const Node = extern struct {
382 }382 }
383383
384 /// Shrink a node to `size`, exactly.384 /// 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.
386 /// If `shift_next` is set, then the following node is shifted backwards into386 /// If `shift_next` is set, then the following node is shifted backwards into
387 /// the free space as much as alignment allows.387 /// the free space as much as alignment allows.
388 /// Asserts that `size` is >= the end of the last child node.388 /// 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 {...@@ -76,9 +76,6 @@ pub fn build(b: *std.Build) void {
76 });76 });
77 exe.root_module.linkLibrary(lib);77 exe.root_module.linkLibrary(lib);
7878
79 b.getInstallStep().dependOn(&b.addInstallArtifact(lib, .{}).step);
80 b.getInstallStep().dependOn(&b.addInstallArtifact(exe, .{}).step);
81
82 const run_cmd = b.addRunArtifact(exe);79 const run_cmd = b.addRunArtifact(exe);
83 test_step.dependOn(&run_cmd.step);80 test_step.dependOn(&run_cmd.step);
84 }81 }