| author | |
| committer | |
| log | 88b1da0e5c8012de2ab6d9deb2133bc3c108f0aa |
| tree | 1c212b2386155f7063f760e7f2f8beba1b9cc2a5 |
8 files changed, 74 insertions(+), 0 deletions(-)
.gitattributes created+3| ... | @@ -0,0 +1,3 @@ | ||
| 1 | * text=auto | ||
| 2 | *.zig text eol=lf | ||
| 3 | zigmod.* text eol=lf | ||
.gitignore created+6| ... | @@ -0,0 +1,6 @@ | ||
| 1 | .zig-cache | ||
| 2 | zig-out | ||
| 3 | .zigmod | ||
| 4 | deps.zig | ||
| 5 | files.zig | ||
| 6 | zigmod.lock | ||
LICENSE created+21| ... | @@ -0,0 +1,21 @@ | ||
| 1 | MIT License | ||
| 2 | |||
| 3 | Copyright (c) 2025 Meghan Denny | ||
| 4 | |||
| 5 | Permission is hereby granted, free of charge, to any person obtaining a copy | ||
| 6 | of this software and associated documentation files (the "Software"), to deal | ||
| 7 | in the Software without restriction, including without limitation the rights | ||
| 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
| 9 | copies of the Software, and to permit persons to whom the Software is | ||
| 10 | furnished to do so, subject to the following conditions: | ||
| 11 | |||
| 12 | The above copyright notice and this permission notice shall be included in all | ||
| 13 | copies or substantial portions of the Software. | ||
| 14 | |||
| 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
| 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
| 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
| 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
| 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
| 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
| 21 | SOFTWARE. | ||
build.zig created+22| ... | @@ -0,0 +1,22 @@ | ||
| 1 | const std = @import("std"); | ||
| 2 | const deps = @import("./deps.zig"); | ||
| 3 | |||
| 4 | pub fn build(b: *std.Build) void { | ||
| 5 | const target = b.standardTargetOptions(.{}); | ||
| 6 | const mode = b.option(std.builtin.Mode, "mode", "") orelse .Debug; | ||
| 7 | const disable_llvm = b.option(bool, "disable_llvm", "use the non-llvm zig codegen") orelse false; | ||
| 8 | |||
| 9 | const tests = b.addTest(.{ | ||
| 10 | .root_source_file = b.path("test.zig"), | ||
| 11 | .target = target, | ||
| 12 | .optimize = mode, | ||
| 13 | }); | ||
| 14 | deps.addAllTo(tests); | ||
| 15 | tests.use_llvm = !disable_llvm; | ||
| 16 | tests.use_lld = !disable_llvm; | ||
| 17 | |||
| 18 | const test_step = b.step("test", "Run all library tests"); | ||
| 19 | const tests_run = b.addRunArtifact(tests); | ||
| 20 | tests_run.has_side_effects = true; | ||
| 21 | test_step.dependOn(&tests_run.step); | ||
| 22 | } | ||
licenses.txt created+8| ... | @@ -0,0 +1,8 @@ | ||
| 1 | MIT: | ||
| 2 | = https://spdx.org/licenses/MIT | ||
| 3 | - This | ||
| 4 | - git https://github.com/nektro/zig-errno | ||
| 5 | |||
| 6 | GPL-2.0-only: | ||
| 7 | = https://spdx.org/licenses/GPL-2.0-only | ||
| 8 | - git https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git | ||
mod.zig created+1| ... | @@ -0,0 +1 @@ | ||
| 1 | const std = @import("std"); | ||
test.zig created+1| ... | @@ -0,0 +1 @@ | ||
| 1 | const std = @import("std"); | ||
zigmod.yml created+12| ... | @@ -0,0 +1,12 @@ | ||
| 1 | id: h7tv7ayhffakkgy9wy5c88n4snmonw35f1bk5xuowvrxympr | ||
| 2 | name: sys-linux | ||
| 3 | main: mod.zig | ||
| 4 | license: MIT | ||
| 5 | description: OS bindings layer for directly making Linux syscalls | ||
| 6 | dependencies: | ||
| 7 | - src: git https://github.com/nektro/zig-errno | ||
| 8 | |||
| 9 | root_dependencies: | ||
| 10 | - src: git https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git | ||
| 11 | license: GPL-2.0-only | ||
| 12 | keep: true | ||