| author | |
| committer | |
| log | 3f07f214aac54bcf8f84975a2312cd91ac67fa04 |
| tree | 3e0dc0b0e0cc038be4454587a89ae6aeaff4a7ca |
| parent | ca4f8e838c0a84e06f3a5b64c27c22726bea6209 |
| signature |
3 files changed, 1 insertions(+), 5 deletions(-)
build.zig+1| ... | @@ -14,6 +14,7 @@ pub fn build(b: *std.Build) void { | ... | @@ -14,6 +14,7 @@ pub fn build(b: *std.Build) void { |
| 14 | }), | 14 | }), |
| 15 | }); | 15 | }); |
| 16 | deps.addAllTo(tests); | 16 | deps.addAllTo(tests); |
| 17 | tests.linkLibC(); | ||
| 17 | tests.use_llvm = !disable_llvm; | 18 | tests.use_llvm = !disable_llvm; |
| 18 | tests.use_lld = !disable_llvm; | 19 | tests.use_lld = !disable_llvm; |
| 19 | 20 |
licenses.txt-3| ... | @@ -1,6 +1,3 @@ | ... | @@ -1,6 +1,3 @@ |
| 1 | MIT: | 1 | MIT: |
| 2 | = https://spdx.org/licenses/MIT | 2 | = https://spdx.org/licenses/MIT |
| 3 | - This | 3 | - This |
| 4 | |||
| 5 | Unspecified: | ||
| 6 | - system_lib c |
zigmod.yml-2| ... | @@ -3,5 +3,3 @@ name: sys-linux | ... | @@ -3,5 +3,3 @@ name: sys-linux |
| 3 | main: mod.zig | 3 | main: mod.zig |
| 4 | license: MIT | 4 | license: MIT |
| 5 | description: OS bindings layer for interacting with Linux | 5 | description: OS bindings layer for interacting with Linux |
| 6 | dependencies: | ||
| 7 | - src: system_lib c |