authorgravatar for hello@nektro.netMeghan Denny <hello@nektro.net> 2025-03-04 02:47:03 -08:00
committergravatar for hello@nektro.netMeghan Denny <hello@nektro.net> 2025-03-04 02:47:03 -08:00
log88b1da0e5c8012de2ab6d9deb2133bc3c108f0aa
tree1c212b2386155f7063f760e7f2f8beba1b9cc2a5

initial commit


8 files changed, 74 insertions(+), 0 deletions(-)

.gitattributes created+3
......@@ -0,0 +1,3 @@
1* text=auto
2*.zig text eol=lf
3zigmod.* text eol=lf
.gitignore created+6
......@@ -0,0 +1,6 @@
1.zig-cache
2zig-out
3.zigmod
4deps.zig
5files.zig
6zigmod.lock
LICENSE created+21
......@@ -0,0 +1,21 @@
1MIT License
2
3Copyright (c) 2025 Meghan Denny
4
5Permission is hereby granted, free of charge, to any person obtaining a copy
6of this software and associated documentation files (the "Software"), to deal
7in the Software without restriction, including without limitation the rights
8to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9copies of the Software, and to permit persons to whom the Software is
10furnished to do so, subject to the following conditions:
11
12The above copyright notice and this permission notice shall be included in all
13copies or substantial portions of the Software.
14
15THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21SOFTWARE.
build.zig created+22
......@@ -0,0 +1,22 @@
1const std = @import("std");
2const deps = @import("./deps.zig");
3
4pub 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 @@
1MIT:
2= https://spdx.org/licenses/MIT
3- This
4- git https://github.com/nektro/zig-errno
5
6GPL-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 @@
1const std = @import("std");
test.zig created+1
......@@ -0,0 +1 @@
1const std = @import("std");
zigmod.yml created+12
......@@ -0,0 +1,12 @@
1id: h7tv7ayhffakkgy9wy5c88n4snmonw35f1bk5xuowvrxympr
2name: sys-linux
3main: mod.zig
4license: MIT
5description: OS bindings layer for directly making Linux syscalls
6dependencies:
7 - src: git https://github.com/nektro/zig-errno
8
9root_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