| author | |
| committer | |
| log | 38d06fdf0e9b9eb2831675b550e3ba7e41b74908 |
| tree | 36438ef85eba4fb10ee0cdc138af5aace834b96d |
| parent | c7bb3a39b781fdecb74ae8df0537516ed1d31826 |
test/standalone/shared_library: remove install step2 files changed, 1 insertions(+), 4 deletions(-)
src/link/MappedFile.zig+1-1| ... | ... | @@ -382,7 +382,7 @@ pub const Node = extern struct { |
| 382 | 382 | } |
| 383 | 383 | |
| 384 | 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 | 386 | /// If `shift_next` is set, then the following node is shifted backwards into |
| 387 | 387 | /// the free space as much as alignment allows. |
| 388 | 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 | 76 | }); |
| 77 | 77 | exe.root_module.linkLibrary(lib); |
| 78 | 78 | |
| 79 | b.getInstallStep().dependOn(&b.addInstallArtifact(lib, .{}).step); | |
| 80 | b.getInstallStep().dependOn(&b.addInstallArtifact(exe, .{}).step); | |
| 81 | ||
| 82 | 79 | const run_cmd = b.addRunArtifact(exe); |
| 83 | 80 | test_step.dependOn(&run_cmd.step); |
| 84 | 81 | } |