aboutsummaryrefslogtreecommitdiff
path: root/test/link/static_lib_as_system_lib/build.zig
AgeCommit message (Collapse)Author
2023-03-15delete link test "static_lib_as_system_lib"Andrew Kelley
I disagree with this behavior and will be reverting the changes corresponding to this test case. Also this test case unnecessarily uses a .c file when a .zig file would be preferred, and has a problematic dependency on the install step, preventing this test case from playing nicely with the cache.
2023-03-15new linker test harnessAndrew Kelley
It's simpler and it takes advantage of `std.Build.addAnonymousDependency`, which has a number of benefits, including concurrenc and preventing extra zig-cache and zig-out directories being created. 4 tests are ported over as an example.
2023-01-31combine std.build and std.build.Builder into std.BuildAndrew Kelley
I've been wanting to do this for along time.
2023-01-31update build.zig API usageAndrew Kelley
2022-06-20test: introduce link(er) tests - builds on standalone testsJakub Konka