prompt: hide docker mounts
This commit is contained in:
parent
005c83561d
commit
5cefa4389e
18 changed files with 504 additions and 1 deletions
|
@ -46,7 +46,7 @@ COLOR_OK = 10
|
|||
COLOR_ERROR = 196
|
||||
COLOR_GREY = 240
|
||||
|
||||
MOUNT_IGNORE_FS = ["iso9660", "tmpfs", "rootfs"]
|
||||
MOUNT_IGNORE_FS = ["iso9660", "tmpfs", "rootfs", "fuse.fuse-overlayfs"]
|
||||
MOUNT_IGNORE_DIR = ["/dev", "/proc", "/sys"]
|
||||
|
||||
def get_username():
|
||||
|
|
70
prompt/build.zig
Normal file
70
prompt/build.zig
Normal file
|
@ -0,0 +1,70 @@
|
|||
const std = @import("std");
|
||||
|
||||
// Although this function looks imperative, note that its job is to
|
||||
// declaratively construct a build graph that will be executed by an external
|
||||
// runner.
|
||||
pub fn build(b: *std.Build) void {
|
||||
// Standard target options allows the person running `zig build` to choose
|
||||
// what target to build for. Here we do not override the defaults, which
|
||||
// means any target is allowed, and the default is native. Other options
|
||||
// for restricting supported target set are available.
|
||||
const target = b.standardTargetOptions(.{});
|
||||
|
||||
// Standard optimization options allow the person running `zig build` to select
|
||||
// between Debug, ReleaseSafe, ReleaseFast, and ReleaseSmall. Here we do not
|
||||
// set a preferred release mode, allowing the user to decide how to optimize.
|
||||
const optimize = b.standardOptimizeOption(.{});
|
||||
|
||||
const exe = b.addExecutable(.{
|
||||
.name = "nih-prompt",
|
||||
// In this case the main source file is merely a path, however, in more
|
||||
// complicated build scripts, this could be a generated file.
|
||||
.root_source_file = .{ .path = "src/main.zig" },
|
||||
.target = target,
|
||||
.optimize = optimize,
|
||||
});
|
||||
|
||||
// This declares intent for the executable to be installed into the
|
||||
// standard location when the user invokes the "install" step (the default
|
||||
// step when running `zig build`).
|
||||
b.installArtifact(exe);
|
||||
|
||||
// This *creates* a Run step in the build graph, to be executed when another
|
||||
// step is evaluated that depends on it. The next line below will establish
|
||||
// such a dependency.
|
||||
const run_cmd = b.addRunArtifact(exe);
|
||||
|
||||
// By making the run step depend on the install step, it will be run from the
|
||||
// installation directory rather than directly from within the cache directory.
|
||||
// This is not necessary, however, if the application depends on other installed
|
||||
// files, this ensures they will be present and in the expected location.
|
||||
run_cmd.step.dependOn(b.getInstallStep());
|
||||
|
||||
// This allows the user to pass arguments to the application in the build
|
||||
// command itself, like this: `zig build run -- arg1 arg2 etc`
|
||||
if (b.args) |args| {
|
||||
run_cmd.addArgs(args);
|
||||
}
|
||||
|
||||
// This creates a build step. It will be visible in the `zig build --help` menu,
|
||||
// and can be selected like this: `zig build run`
|
||||
// This will evaluate the `run` step rather than the default, which is "install".
|
||||
const run_step = b.step("run", "Run the app");
|
||||
run_step.dependOn(&run_cmd.step);
|
||||
|
||||
// Creates a step for unit testing. This only builds the test executable
|
||||
// but does not run it.
|
||||
const unit_tests = b.addTest(.{
|
||||
.root_source_file = .{ .path = "src/main.zig" },
|
||||
.target = target,
|
||||
.optimize = optimize,
|
||||
});
|
||||
|
||||
const run_unit_tests = b.addRunArtifact(unit_tests);
|
||||
|
||||
// Similar to creating the run step earlier, this exposes a `test` step to
|
||||
// the `zig build --help` menu, providing a way for the user to request
|
||||
// running the unit tests.
|
||||
const test_step = b.step("test", "Run unit tests");
|
||||
test_step.dependOn(&run_unit_tests.step);
|
||||
}
|
14
prompt/src/main.zig
Normal file
14
prompt/src/main.zig
Normal file
|
@ -0,0 +1,14 @@
|
|||
const std = @import("std");
|
||||
|
||||
pub fn main() !void {
|
||||
var gpa = std.heap.GeneralPurposeAllocator(.{}){};
|
||||
const allocator = gpa.allocator();
|
||||
defer _ = gpa.deinit();
|
||||
|
||||
var args = try std.process.argsWithAllocator(allocator);
|
||||
defer args.deinit();
|
||||
|
||||
while(args.next()) |arg|{
|
||||
std.debug.print("{s}\n", .{arg});
|
||||
}
|
||||
}
|
62
prompt/zig-cache/h/65ab713db73c53e3fc2ac36c06431919.txt
Normal file
62
prompt/zig-cache/h/65ab713db73c53e3fc2ac36c06431919.txt
Normal file
|
@ -0,0 +1,62 @@
|
|||
0
|
||||
320 48541480 1685626324983964700 b79be5e5a6e27031a103d44db063431e 0 src/main.zig
|
||||
320 48541480 1685626324983964700 b79be5e5a6e27031a103d44db063431e 0 src/main.zig
|
||||
9117 66130479 1685520295985644888 38b73afcef724ed151a438fe6648fa43 1 std/std.zig
|
||||
9117 66130479 1685520295985644888 38b73afcef724ed151a438fe6648fa43 1 std/std.zig
|
||||
24060 66130481 1685520295985644888 074102e5ef6febf836234abed9b295f7 1 std/start.zig
|
||||
320 48541480 1685626324983964700 b79be5e5a6e27031a103d44db063431e 0 src/main.zig
|
||||
36300 66130902 1685520294738977237 4b62c80ed4c24eeddb79e2d23a472597 1 std/builtin.zig
|
||||
2810 0 0 f68d479da0bf2e16e34a1806456c08c8 2 o/3bb1e32c99a479a94a64cb4c7f3081f5/builtin.zig
|
||||
86352 66130477 1685520296008978240 f56940c3bd03dabdd56537708d87cf7c 1 std/target.zig
|
||||
108027 66130456 1685520296072311623 2a0ecd1aef2881dfcd07f739605668ab 1 std/target/x86.zig
|
||||
73301 66130662 1685520295495644501 f1dc0e1d8579c1d8d8d6f6f709a771d7 1 std/math.zig
|
||||
38146 66130597 1685520295565644556 c829641200672fdbc9a3ed8f1db5a972 1 std/meta.zig
|
||||
47409 66130763 1685520295355644391 84db2d4e2cb4c9699922fd1aa97d53af 1 std/elf.zig
|
||||
291868 66130590 1685520295592311244 91dad9a20a554753dc0f771087115e03 1 std/os.zig
|
||||
170062 66130589 1685520295618977932 c8205a7385f0b2c0e6c45042bf329b53 1 std/os/linux.zig
|
||||
123218 66130578 1685520295648977956 dfba93e4381836e7e44c38df418a1ce5 1 std/os/linux/io_uring.zig
|
||||
12341 66130565 1685520295675644643 983a95f66840506f40945f270622196e 1 std/os/linux/tls.zig
|
||||
85489 66130772 1685520295332311039 deb304656db39305039f77660f9f52c9 1 std/debug.zig
|
||||
932 66130761 1685520295365644399 930586aed5ab76447299f260dd7ea2c2 1 std/event.zig
|
||||
69011 66130754 1685520295365644399 e8d68d9cbd60c769f8752edec5333cc9 1 std/event/loop.zig
|
||||
16717 66130699 1685520295478977821 c82ec98294aa59d9bffab82de9dd3210 1 std/io.zig
|
||||
30658 66130714 1685520295468977813 fc9c1f73636d978f021a45bb1ed32e35 1 std/heap.zig
|
||||
59572 66130708 1685520295475644485 5d400760bbc5fcb09797a4df42c666f1 1 std/heap/general_purpose_allocator.zig
|
||||
158331 66130599 1685520295535644533 7bb16e6a087c5705d7331b8d41b630ee 1 std/mem.zig
|
||||
12874 66130598 1685520295535644533 f9ab9cfa42ffcc31322e8c5d217b534c 1 std/mem/Allocator.zig
|
||||
1886 66130609 1685520295515644517 05cf2e107513026fae7e68c529e8fb92 1 std/math/log2.zig
|
||||
87286 66130715 1685520295468977813 907ab631cfd38e2121c06769af75b717 1 std/hash_map.zig
|
||||
42121 66130924 1685520294725643893 5fa23b75823db7442abb694ff43bb5b3 1 std/Thread.zig
|
||||
10488 66130921 1685520294732310565 40d6aeff80979d474d1ff8c2785c8553 1 std/Thread/Mutex.zig
|
||||
5418 66130911 1685520294735643901 07df84fbff0eff61c5420c8806242664 1 std/atomic.zig
|
||||
25765 66130910 1685520294735643901 d967e202e9330458132ddc021712acf1 1 std/atomic/Atomic.zig
|
||||
18555 66130595 1685520295565644556 15aed2b9948cdd72d9e3e834caab1e79 1 std/meta/trait.zig
|
||||
3721 66130713 1685520295472311149 3beb5a61b3e5d8ca3793446186a420df 1 std/heap/PageAllocator.zig
|
||||
44855 66130499 1685520295928978177 3c151ca58e826b24106997e82ccae140 1 std/process.zig
|
||||
9200 66130562 1685520295728978019 7fea055a4ad0d23ab40a5a0b70732801 1 std/os/linux/x86_64.zig
|
||||
140077 66130734 1685520295458977806 929da06c86e4e9e83e346a76a2fc2bc5 1 std/fs.zig
|
||||
66083 66130733 1685520295458977806 15154ab9f33ca380db4effcd3ea49cc5 1 std/fs/file.zig
|
||||
3336 66130679 1685520295485644493 4966a1d6aa81da42ffed63e936a32fd2 1 std/io/writer.zig
|
||||
110330 66130749 1685520295415644438 9d0bc13ed9738f63847500bf8187aed9 1 std/fmt.zig
|
||||
7889 66130581 1685520295648977956 7fbcef4af54383e697fe60b5f21bfab9 1 std/os/linux/errno/generic.zig
|
||||
86456 66130568 1685520295675644643 42bfc23dcb80eb01c50b2b49903a1570 1 std/os/linux/syscalls.zig
|
||||
8251 66130664 1685520295495644501 ffd95e6eeb04a04dcc42bbf87c6bcd5a 1 std/log.zig
|
||||
5211 66130680 1685520295485644493 75347b48a264e47890cb318d1c803e94 1 std/io/tty.zig
|
||||
59055 66130771 1685520295332311039 1af7faa7a2907d2049b712f631855764 1 std/dwarf.zig
|
||||
68556 66130913 1685520294735643901 9226923f1fd68654d918f72f0dadfbf1 1 std/array_list.zig
|
||||
12382 66130709 1685520295472311149 a411d6f4bc47edf314280c31b51293ab 1 std/heap/arena_allocator.zig
|
||||
13385 66130665 1685520295495644501 e9ba00a7094a1b81cd009f2c11ef5a14 1 std/linked_list.zig
|
||||
6664 66130688 1685520295482311157 0dd4cf5354ad3cea85d252ebaf8040bc 1 std/io/fixed_buffer_stream.zig
|
||||
28903 66130684 1685520295485644493 2f13040c8ae95268e1a3468804a7425f 1 std/io/reader.zig
|
||||
1117 66130683 1685520295485644493 a152316b61d451934ba206284a2f5c2d 1 std/io/seekable_stream.zig
|
||||
15550 66130666 1685520295495644501 d350764b7c0eb1a9daac8d2ceab79baf 1 std/leb128.zig
|
||||
1399 66130768 1685520295338977711 40a7d4ac60d12c6e9ca294acaed35474 1 std/dwarf/FORM.zig
|
||||
3848 66130765 1685520295348977719 d350e3560c664ad0a67512ac75a09647 1 std/dwarf/TAG.zig
|
||||
7395 66130770 1685520295338977711 0736a520f4793791a2cfc257bfcfd3b6 1 std/dwarf/AT.zig
|
||||
49557 66130731 1685520295462311142 71e96d611e0c3dbee5095178a1aa37db 1 std/fs/path.zig
|
||||
41497 66130922 1685520294732310565 0f599c03a1862ea130c525c198b101e3 1 std/Thread/Futex.zig
|
||||
33964 66130448 1685520296155645022 2d788f0bf726a65471a247645fbb9b8d 1 std/unicode.zig
|
||||
14379 66130764 1685520295355644391 774b71217d74d81ac3a40e906234af04 1 std/dynamic_library.zig
|
||||
12926 66130452 1685520296105644983 798ca1b782b627b8911b893bbee4e85c 1 std/time.zig
|
||||
1303 66130727 1685520295462311142 08b557975f13ad5b8293858f4c4f9466 1 std/hash.zig
|
||||
10120 66130717 1685520295468977813 0b078323d347c00a2a5f65f500a21496 1 std/hash/wyhash.zig
|
131
prompt/zig-cache/h/9d832eaf3e26e6a644b22380f3acfd93.txt
Normal file
131
prompt/zig-cache/h/9d832eaf3e26e6a644b22380f3acfd93.txt
Normal file
|
@ -0,0 +1,131 @@
|
|||
0
|
||||
43197 66143186 1685520279375631667 4ae750f34d0d6e94c5fc429c277c8f52 1 build_runner.zig
|
||||
2982 48541481 1685634334194225392 d16a1f89dece3af5e9c747cc8ea2ace8 0 /home/martin/git/over-env/prompt/build.zig
|
||||
67 48542753 1685634065172249936 8fda7d11aa245b729844ad4f71b7bd50 2 o/819048f2c79369a4a4b61969685b4ddf/dependencies.zig
|
||||
43197 66143186 1685520279375631667 4ae750f34d0d6e94c5fc429c277c8f52 1 build_runner.zig
|
||||
9117 66130479 1685520295985644888 38b73afcef724ed151a438fe6648fa43 1 std/std.zig
|
||||
9117 66130479 1685520295985644888 38b73afcef724ed151a438fe6648fa43 1 std/std.zig
|
||||
24060 66130481 1685520295985644888 074102e5ef6febf836234abed9b295f7 1 std/start.zig
|
||||
43197 66143186 1685520279375631667 4ae750f34d0d6e94c5fc429c277c8f52 1 build_runner.zig
|
||||
36300 66130902 1685520294738977237 4b62c80ed4c24eeddb79e2d23a472597 1 std/builtin.zig
|
||||
2810 48542762 1685634065232249624 f68d479da0bf2e16e34a1806456c08c8 2 o/ddf55513bbf8d6b7ac146a75bcb736e4/builtin.zig
|
||||
86352 66130477 1685520296008978240 f56940c3bd03dabdd56537708d87cf7c 1 std/target.zig
|
||||
108027 66130456 1685520296072311623 2a0ecd1aef2881dfcd07f739605668ab 1 std/target/x86.zig
|
||||
73301 66130662 1685520295495644501 f1dc0e1d8579c1d8d8d6f6f709a771d7 1 std/math.zig
|
||||
38146 66130597 1685520295565644556 c829641200672fdbc9a3ed8f1db5a972 1 std/meta.zig
|
||||
47409 66130763 1685520295355644391 84db2d4e2cb4c9699922fd1aa97d53af 1 std/elf.zig
|
||||
291868 66130590 1685520295592311244 91dad9a20a554753dc0f771087115e03 1 std/os.zig
|
||||
170062 66130589 1685520295618977932 c8205a7385f0b2c0e6c45042bf329b53 1 std/os/linux.zig
|
||||
123218 66130578 1685520295648977956 dfba93e4381836e7e44c38df418a1ce5 1 std/os/linux/io_uring.zig
|
||||
12341 66130565 1685520295675644643 983a95f66840506f40945f270622196e 1 std/os/linux/tls.zig
|
||||
85489 66130772 1685520295332311039 deb304656db39305039f77660f9f52c9 1 std/debug.zig
|
||||
932 66130761 1685520295365644399 930586aed5ab76447299f260dd7ea2c2 1 std/event.zig
|
||||
69011 66130754 1685520295365644399 e8d68d9cbd60c769f8752edec5333cc9 1 std/event/loop.zig
|
||||
16717 66130699 1685520295478977821 c82ec98294aa59d9bffab82de9dd3210 1 std/io.zig
|
||||
30658 66130714 1685520295468977813 fc9c1f73636d978f021a45bb1ed32e35 1 std/heap.zig
|
||||
12382 66130709 1685520295472311149 a411d6f4bc47edf314280c31b51293ab 1 std/heap/arena_allocator.zig
|
||||
158331 66130599 1685520295535644533 7bb16e6a087c5705d7331b8d41b630ee 1 std/mem.zig
|
||||
12874 66130598 1685520295535644533 f9ab9cfa42ffcc31322e8c5d217b534c 1 std/mem/Allocator.zig
|
||||
13385 66130665 1685520295495644501 e9ba00a7094a1b81cd009f2c11ef5a14 1 std/linked_list.zig
|
||||
3721 66130713 1685520295472311149 3beb5a61b3e5d8ca3793446186a420df 1 std/heap/PageAllocator.zig
|
||||
1394 66130712 1685520295472311149 37ebb506973e1e0a2c669f8a03f9b271 1 std/heap/ThreadSafeAllocator.zig
|
||||
42121 66130924 1685520294725643893 5fa23b75823db7442abb694ff43bb5b3 1 std/Thread.zig
|
||||
10488 66130921 1685520294732310565 40d6aeff80979d474d1ff8c2785c8553 1 std/Thread/Mutex.zig
|
||||
5418 66130911 1685520294735643901 07df84fbff0eff61c5420c8806242664 1 std/atomic.zig
|
||||
25765 66130910 1685520294735643901 d967e202e9330458132ddc021712acf1 1 std/atomic/Atomic.zig
|
||||
18555 66130595 1685520295565644556 15aed2b9948cdd72d9e3e834caab1e79 1 std/meta/trait.zig
|
||||
44855 66130499 1685520295928978177 3c151ca58e826b24106997e82ccae140 1 std/process.zig
|
||||
68556 66130913 1685520294735643901 9226923f1fd68654d918f72f0dadfbf1 1 std/array_list.zig
|
||||
7811 66130442 1685520296175645038 80af0b9f62c641c40686e97788564085 1 std/zig.zig
|
||||
382 66130426 1685520296242311757 94ea47354e81f514486ffdfdb0674c86 1 std/zig/system.zig
|
||||
49684 66130424 1685520296272311781 f1e719aea0dd0dbbfa853c266a946dc5 1 std/zig/system/NativeTargetInfo.zig
|
||||
29872 66130439 1685520296175645038 1ae8d8bc2fa10300d1f9b7884ac926c0 1 std/zig/CrossTarget.zig
|
||||
66262 66130946 1685520294702310541 71d19b3d6390c6c76247ef3dbc76d6dc 1 std/Build.zig
|
||||
45599 66130945 1685520294702310541 f9ba80c0bf14492ba7fdf9c309403f7b 1 std/Build/Cache.zig
|
||||
140077 66130734 1685520295458977806 929da06c86e4e9e83e346a76a2fc2bc5 1 std/fs.zig
|
||||
49557 66130731 1685520295462311142 71e96d611e0c3dbee5095178a1aa37db 1 std/fs/path.zig
|
||||
12260 66130844 1685520294978977426 c6be36ffcab45cf854bdadb70213c6d5 1 std/crypto.zig
|
||||
18960 66130779 1685520295302311015 01e9abf356e26762c04e044146334eb3 1 std/crypto/siphash.zig
|
||||
87286 66130715 1685520295468977813 907ab631cfd38e2121c06769af75b717 1 std/hash_map.zig
|
||||
18964 66130943 1685520294705643877 a397f3b2a16953d2b449bcbf73d9c945 1 std/Build/Step.zig
|
||||
108009 66130914 1685520294732310565 276e784f9e23cc9a93a53d47c31e807a 1 std/array_hash_map.zig
|
||||
15656 66130927 1685520294725643893 e93885b187464cad500ab4fce22257e4 1 std/Progress.zig
|
||||
66083 66130733 1685520295458977806 15154ab9f33ca380db4effcd3ea49cc5 1 std/fs/file.zig
|
||||
12926 66130452 1685520296105644983 798ca1b782b627b8911b893bbee4e85c 1 std/time.zig
|
||||
19220 66130438 1685520296175645038 fefcff9c9ae0872c62cf521ab0f81368 1 std/zig/ErrorBundle.zig
|
||||
32261 66130594 1685520295565644556 eb5a9a63d84357b46f699f7376d474c4 1 std/multi_array_list.zig
|
||||
1886 66130609 1685520295515644517 05cf2e107513026fae7e68c529e8fb92 1 std/math/log2.zig
|
||||
4171 66130920 1685520294732310565 b646b2f1de16c6189a44c93068eb4b10 1 std/Thread/Pool.zig
|
||||
3336 66130679 1685520295485644493 4966a1d6aa81da42ffed63e936a32fd2 1 std/io/writer.zig
|
||||
8251 66130664 1685520295495644501 ffd95e6eeb04a04dcc42bbf87c6bcd5a 1 std/log.zig
|
||||
110330 66130749 1685520295415644438 9d0bc13ed9738f63847500bf8187aed9 1 std/fmt.zig
|
||||
5211 66130680 1685520295485644493 75347b48a264e47890cb318d1c803e94 1 std/io/tty.zig
|
||||
2982 48541481 1685634334194225392 d16a1f89dece3af5e9c747cc8ea2ace8 0 /home/martin/git/over-env/prompt/build.zig
|
||||
23526 66130923 1685520294728977229 f494e7fd5a3307d8479a9b42e8c0640c 1 std/Thread/Condition.zig
|
||||
1184 66130916 1685520294732310565 3114de7f6c3bb7cbe484dc939088c296 1 std/Thread/WaitGroup.zig
|
||||
9272 66130919 1685520294732310565 2ac164091642f75dca1ff2714bed66e1 1 std/Thread/ResetEvent.zig
|
||||
9200 66130562 1685520295728978019 7fea055a4ad0d23ab40a5a0b70732801 1 std/os/linux/x86_64.zig
|
||||
14642 66130912 1685520294735643901 1d4861b5b1bbd953151574bdd717a89d 1 std/ascii.zig
|
||||
74654 66130473 1685520296035644928 58a39722664e2cf179e7474626f1c34d 1 std/target/arm.zig
|
||||
18349 66130484 1685520295985644888 7c63fa398bc5442dd2a4931033e9525f 1 std/sort.zig
|
||||
51357 66130483 1685520295985644888 bf3723b06350263d5cf29ade800eccce 1 std/sort/block.zig
|
||||
7660 66130605 1685520295518977853 bcce97dd5cbc857eaacff7c0dd0b3092 1 std/math/powi.zig
|
||||
5307 66130845 1685520294975644090 ac6874bb31c6b5fdcf56ebe2108d7b27 1 std/comptime_string_map.zig
|
||||
7889 66130581 1685520295648977956 7fbcef4af54383e697fe60b5f21bfab9 1 std/os/linux/errno/generic.zig
|
||||
59055 66130771 1685520295332311039 1af7faa7a2907d2049b712f631855764 1 std/dwarf.zig
|
||||
6664 66130688 1685520295482311157 0dd4cf5354ad3cea85d252ebaf8040bc 1 std/io/fixed_buffer_stream.zig
|
||||
28903 66130684 1685520295485644493 2f13040c8ae95268e1a3468804a7425f 1 std/io/reader.zig
|
||||
1117 66130683 1685520295485644493 a152316b61d451934ba206284a2f5c2d 1 std/io/seekable_stream.zig
|
||||
15550 66130666 1685520295495644501 d350764b7c0eb1a9daac8d2ceab79baf 1 std/leb128.zig
|
||||
1399 66130768 1685520295338977711 40a7d4ac60d12c6e9ca294acaed35474 1 std/dwarf/FORM.zig
|
||||
3848 66130765 1685520295348977719 d350e3560c664ad0a67512ac75a09647 1 std/dwarf/TAG.zig
|
||||
7395 66130770 1685520295338977711 0736a520f4793791a2cfc257bfcfd3b6 1 std/dwarf/AT.zig
|
||||
86456 66130568 1685520295675644643 42bfc23dcb80eb01c50b2b49903a1570 1 std/os/linux/syscalls.zig
|
||||
21084 66130418 1685520296298978469 9a7b2a0a587ce12ba20651a09b51703f 1 std/zig/system/x86.zig
|
||||
14845 66130905 1685520294735643901 880c34e815f8555a1ea1bc5aaf3cd181 1 std/bounded_array.zig
|
||||
82110 66130940 1685520294705643877 6bb7c6cbcdf4278622c58520944437f6 1 std/Build/Step/Compile.zig
|
||||
14374 66130939 1685520294705643877 2eb0fe4aabfe0b24b25ef21bbc89fff2 1 std/Build/Step/ConfigHeader.zig
|
||||
45752 66130931 1685520294725643893 a1d0b10ff7ab387f59d944d14cd52495 1 std/Build/Step/Run.zig
|
||||
57689 66130882 1685520294752310580 6b21079cab893bc0c56fc03990fd896c 1 std/child_process.zig
|
||||
41497 66130922 1685520294732310565 0f599c03a1862ea130c525c198b101e3 1 std/Thread/Futex.zig
|
||||
33964 66130448 1685520296155645022 2d788f0bf726a65471a247645fbb9b8d 1 std/unicode.zig
|
||||
1165 66130690 1685520295482311157 7f4c32468179d93ff6bca6625a218b09 1 std/io/counting_writer.zig
|
||||
14379 66130764 1685520295355644391 774b71217d74d81ac3a40e906234af04 1 std/dynamic_library.zig
|
||||
30565 66130462 1685520296072311623 96e5f434a42e28687f739d502facbe6e 1 std/target/riscv.zig
|
||||
12102 66130464 1685520296045644936 012854f8de4e87555d17a1da82f473ce 1 std/target/nvptx.zig
|
||||
13321 66130460 1685520296072311623 a678b1e65037ea3865a6b00077513cc0 1 std/target/sparc.zig
|
||||
1271 66130474 1685520296035644928 162e7330bcf87c88eaa9f42afb71ccd1 1 std/target/arc.zig
|
||||
69655 66130472 1685520296045644936 fec1c71c21d56b266f22ad1a501f58f9 1 std/target/avr.zig
|
||||
77024 66130470 1685520296045644936 906e50bc7f3f98d04873278336cc91f3 1 std/target/csky.zig
|
||||
16000 66130469 1685520296045644936 4e252f5066ee0489b0f2fa5ba1e3ac48 1 std/target/hexagon.zig
|
||||
6598 66130467 1685520296045644936 43a978ec8c4b1c9c5b901cb448e287e2 1 std/target/m68k.zig
|
||||
2212 66130465 1685520296045644936 6608b306e4b4abb2dd34376d4897ca74 1 std/target/msp430.zig
|
||||
66093 66130475 1685520296008978240 597985045c9e5fe2217e3db44efa52fe 1 std/target/amdgpu.zig
|
||||
25579 66130461 1685520296072311623 0bb2bf7618c1f1eb67fb21b32bfc6edf 1 std/target/s390x.zig
|
||||
1271 66130455 1685520296072311623 031045055579650c0a85120176f93b39 1 std/target/xtensa.zig
|
||||
1246 66130458 1685520296072311623 89cf34039998454eca699b65b340d7d9 1 std/target/ve.zig
|
||||
80351 66130476 1685520296008978240 04f5a8aeb88435cdf6a5349740e42c26 1 std/target/aarch64.zig
|
||||
2213 66130471 1685520296045644936 1781f14f4fe5033a240e81403188ead8 1 std/target/bpf.zig
|
||||
4115 66130468 1685520296045644936 90abc365a14709e3f05847af6b20c79e 1 std/target/loongarch.zig
|
||||
15962 66130466 1685520296045644936 aa105d944db5cab755d932bf75f5e7a0 1 std/target/mips.zig
|
||||
34069 66130463 1685520296045644936 f8dae96787e663a18cba171f4cfd2282 1 std/target/powerpc.zig
|
||||
77362 66130459 1685520296072311623 3bfed087da44e2dd4961a529abc39656 1 std/target/spirv.zig
|
||||
4271 66130457 1685520296072311623 eb640fa931ab93e2f6cbbe525a0e30a5 1 std/target/wasm.zig
|
||||
1303 66130727 1685520295462311142 08b557975f13ad5b8293858f4c4f9466 1 std/hash.zig
|
||||
10120 66130717 1685520295468977813 0b078323d347c00a2a5f65f500a21496 1 std/hash/wyhash.zig
|
||||
5259 66130937 1685520294705643877 d8738f984adee5df2d7441bb8f9a9b85 1 std/Build/Step/InstallArtifact.zig
|
||||
170301 66130520 1685520295845644778 8edbc1dd8253e737f5e79e0ea517ec7a 1 std/os/windows.zig
|
||||
34861 66130781 1685520295295644343 9ae12f150f3857d211376bf671386bd1 1 std/crypto/sha2.zig
|
||||
20600 66130750 1685520295415644438 1738491813eedd570bd1406e1f736d44 1 std/fifo.zig
|
||||
1464 66130440 1685520296175645038 262bf5a41c36322233615e07256bc570 1 std/zig/Client.zig
|
||||
8960 66130436 1685520296212311734 545d116abae4d58075fc154f7e0df2ba 1 std/zig/Server.zig
|
||||
17806 66130907 1685520294735643901 4c8d6500d6486805a96ed4b327fc7fe0 1 std/base64.zig
|
||||
6142 66130777 1685520295302311015 7247608a8645ef021c73994785fc5153 1 std/crypto/tlcsprng.zig
|
||||
20379 66130498 1685520295955644865 dbc7e7811fa939f6f901a106f0404ee8 1 std/rand.zig
|
||||
3866 66130564 1685520295722311347 cbf194a0147a11b50a943666847824f2 1 std/os/linux/vdso.zig
|
||||
2714 66130496 1685520295955644865 b139a6d8f8345509d412e8b09195c094 1 std/rand/ChaCha.zig
|
||||
51937 66130820 1685520295108977529 1cce637ceaa076c84f56d4485af2974f 1 std/crypto/chacha20.zig
|
||||
7325 66130774 1685520295302311015 4dac2edce53a5714cc11a9ab45518c7c 1 std/crypto/utils.zig
|
||||
19776 66130901 1685520294738977237 a7cb311397e4921b7adf8cbce66fa0e2 1 std/c.zig
|
||||
13182 66130890 1685520294748977245 84dd759174c441293f59918542338747 1 std/c/linux.zig
|
||||
1546 66130687 1685520295482311157 e2fd8cc97ba83b1bcdb7f467e107f61d 1 std/io/limited_reader.zig
|
0
prompt/zig-cache/h/timestamp
Normal file
0
prompt/zig-cache/h/timestamp
Normal file
BIN
prompt/zig-cache/o/1c0891473e5788a56b56b82eac4b4dfb/nih-prompt
Executable file
BIN
prompt/zig-cache/o/1c0891473e5788a56b56b82eac4b4dfb/nih-prompt
Executable file
Binary file not shown.
BIN
prompt/zig-cache/o/1c0891473e5788a56b56b82eac4b4dfb/nih-prompt.o
Normal file
BIN
prompt/zig-cache/o/1c0891473e5788a56b56b82eac4b4dfb/nih-prompt.o
Normal file
Binary file not shown.
111
prompt/zig-cache/o/3bb1e32c99a479a94a64cb4c7f3081f5/builtin.zig
Normal file
111
prompt/zig-cache/o/3bb1e32c99a479a94a64cb4c7f3081f5/builtin.zig
Normal file
|
@ -0,0 +1,111 @@
|
|||
const std = @import("std");
|
||||
/// Zig version. When writing code that supports multiple versions of Zig, prefer
|
||||
/// feature detection (i.e. with `@hasDecl` or `@hasField`) over version checks.
|
||||
pub const zig_version = std.SemanticVersion.parse(zig_version_string) catch unreachable;
|
||||
pub const zig_version_string = "0.11.0-dev.3333+32e719e07";
|
||||
pub const zig_backend = std.builtin.CompilerBackend.stage2_llvm;
|
||||
|
||||
pub const output_mode = std.builtin.OutputMode.Exe;
|
||||
pub const link_mode = std.builtin.LinkMode.Static;
|
||||
pub const is_test = false;
|
||||
pub const single_threaded = false;
|
||||
pub const abi = std.Target.Abi.gnu;
|
||||
pub const cpu: std.Target.Cpu = .{
|
||||
.arch = .x86_64,
|
||||
.model = &std.Target.x86.cpu.znver1,
|
||||
.features = std.Target.x86.featureSet(&[_]std.Target.x86.Feature{
|
||||
.@"64bit",
|
||||
.adx,
|
||||
.aes,
|
||||
.allow_light_256_bit,
|
||||
.avx,
|
||||
.avx2,
|
||||
.bmi,
|
||||
.bmi2,
|
||||
.branchfusion,
|
||||
.clflushopt,
|
||||
.clzero,
|
||||
.cmov,
|
||||
.crc32,
|
||||
.cx16,
|
||||
.cx8,
|
||||
.f16c,
|
||||
.fast_15bytenop,
|
||||
.fast_bextr,
|
||||
.fast_lzcnt,
|
||||
.fast_movbe,
|
||||
.fast_scalar_fsqrt,
|
||||
.fast_scalar_shift_masks,
|
||||
.fast_variable_perlane_shuffle,
|
||||
.fast_vector_fsqrt,
|
||||
.fma,
|
||||
.fsgsbase,
|
||||
.fxsr,
|
||||
.lzcnt,
|
||||
.mmx,
|
||||
.movbe,
|
||||
.mwaitx,
|
||||
.nopl,
|
||||
.pclmul,
|
||||
.popcnt,
|
||||
.prfchw,
|
||||
.rdrnd,
|
||||
.rdseed,
|
||||
.sahf,
|
||||
.sbb_dep_breaking,
|
||||
.sha,
|
||||
.slow_shld,
|
||||
.sse,
|
||||
.sse2,
|
||||
.sse3,
|
||||
.sse4_1,
|
||||
.sse4_2,
|
||||
.sse4a,
|
||||
.ssse3,
|
||||
.vzeroupper,
|
||||
.x87,
|
||||
.xsave,
|
||||
.xsavec,
|
||||
.xsaveopt,
|
||||
.xsaves,
|
||||
}),
|
||||
};
|
||||
pub const os = std.Target.Os{
|
||||
.tag = .linux,
|
||||
.version_range = .{ .linux = .{
|
||||
.range = .{
|
||||
.min = .{
|
||||
.major = 6,
|
||||
.minor = 3,
|
||||
.patch = 4,
|
||||
},
|
||||
.max = .{
|
||||
.major = 6,
|
||||
.minor = 3,
|
||||
.patch = 4,
|
||||
},
|
||||
},
|
||||
.glibc = .{
|
||||
.major = 2,
|
||||
.minor = 36,
|
||||
.patch = 0,
|
||||
},
|
||||
}},
|
||||
};
|
||||
pub const target = std.Target{
|
||||
.cpu = cpu,
|
||||
.os = os,
|
||||
.abi = abi,
|
||||
.ofmt = object_format,
|
||||
};
|
||||
pub const object_format = std.Target.ObjectFormat.elf;
|
||||
pub const mode = std.builtin.Mode.Debug;
|
||||
pub const link_libc = false;
|
||||
pub const link_libcpp = false;
|
||||
pub const have_error_return_tracing = true;
|
||||
pub const valgrind_support = true;
|
||||
pub const sanitize_thread = false;
|
||||
pub const position_independent_code = false;
|
||||
pub const position_independent_executable = false;
|
||||
pub const strip_debug_info = false;
|
||||
pub const code_model = std.builtin.CodeModel.default;
|
BIN
prompt/zig-cache/o/5755195afba80bfb409d90f97d8e2914/build
Executable file
BIN
prompt/zig-cache/o/5755195afba80bfb409d90f97d8e2914/build
Executable file
Binary file not shown.
BIN
prompt/zig-cache/o/5755195afba80bfb409d90f97d8e2914/build.o
Normal file
BIN
prompt/zig-cache/o/5755195afba80bfb409d90f97d8e2914/build.o
Normal file
Binary file not shown.
|
@ -0,0 +1,4 @@
|
|||
pub const imports = struct {
|
||||
};
|
||||
pub const build_root = struct {
|
||||
};
|
111
prompt/zig-cache/o/ddf55513bbf8d6b7ac146a75bcb736e4/builtin.zig
Normal file
111
prompt/zig-cache/o/ddf55513bbf8d6b7ac146a75bcb736e4/builtin.zig
Normal file
|
@ -0,0 +1,111 @@
|
|||
const std = @import("std");
|
||||
/// Zig version. When writing code that supports multiple versions of Zig, prefer
|
||||
/// feature detection (i.e. with `@hasDecl` or `@hasField`) over version checks.
|
||||
pub const zig_version = std.SemanticVersion.parse(zig_version_string) catch unreachable;
|
||||
pub const zig_version_string = "0.11.0-dev.3333+32e719e07";
|
||||
pub const zig_backend = std.builtin.CompilerBackend.stage2_llvm;
|
||||
|
||||
pub const output_mode = std.builtin.OutputMode.Exe;
|
||||
pub const link_mode = std.builtin.LinkMode.Static;
|
||||
pub const is_test = false;
|
||||
pub const single_threaded = false;
|
||||
pub const abi = std.Target.Abi.gnu;
|
||||
pub const cpu: std.Target.Cpu = .{
|
||||
.arch = .x86_64,
|
||||
.model = &std.Target.x86.cpu.znver1,
|
||||
.features = std.Target.x86.featureSet(&[_]std.Target.x86.Feature{
|
||||
.@"64bit",
|
||||
.adx,
|
||||
.aes,
|
||||
.allow_light_256_bit,
|
||||
.avx,
|
||||
.avx2,
|
||||
.bmi,
|
||||
.bmi2,
|
||||
.branchfusion,
|
||||
.clflushopt,
|
||||
.clzero,
|
||||
.cmov,
|
||||
.crc32,
|
||||
.cx16,
|
||||
.cx8,
|
||||
.f16c,
|
||||
.fast_15bytenop,
|
||||
.fast_bextr,
|
||||
.fast_lzcnt,
|
||||
.fast_movbe,
|
||||
.fast_scalar_fsqrt,
|
||||
.fast_scalar_shift_masks,
|
||||
.fast_variable_perlane_shuffle,
|
||||
.fast_vector_fsqrt,
|
||||
.fma,
|
||||
.fsgsbase,
|
||||
.fxsr,
|
||||
.lzcnt,
|
||||
.mmx,
|
||||
.movbe,
|
||||
.mwaitx,
|
||||
.nopl,
|
||||
.pclmul,
|
||||
.popcnt,
|
||||
.prfchw,
|
||||
.rdrnd,
|
||||
.rdseed,
|
||||
.sahf,
|
||||
.sbb_dep_breaking,
|
||||
.sha,
|
||||
.slow_shld,
|
||||
.sse,
|
||||
.sse2,
|
||||
.sse3,
|
||||
.sse4_1,
|
||||
.sse4_2,
|
||||
.sse4a,
|
||||
.ssse3,
|
||||
.vzeroupper,
|
||||
.x87,
|
||||
.xsave,
|
||||
.xsavec,
|
||||
.xsaveopt,
|
||||
.xsaves,
|
||||
}),
|
||||
};
|
||||
pub const os = std.Target.Os{
|
||||
.tag = .linux,
|
||||
.version_range = .{ .linux = .{
|
||||
.range = .{
|
||||
.min = .{
|
||||
.major = 6,
|
||||
.minor = 3,
|
||||
.patch = 4,
|
||||
},
|
||||
.max = .{
|
||||
.major = 6,
|
||||
.minor = 3,
|
||||
.patch = 4,
|
||||
},
|
||||
},
|
||||
.glibc = .{
|
||||
.major = 2,
|
||||
.minor = 36,
|
||||
.patch = 0,
|
||||
},
|
||||
}},
|
||||
};
|
||||
pub const target = std.Target{
|
||||
.cpu = cpu,
|
||||
.os = os,
|
||||
.abi = abi,
|
||||
.ofmt = object_format,
|
||||
};
|
||||
pub const object_format = std.Target.ObjectFormat.elf;
|
||||
pub const mode = std.builtin.Mode.Debug;
|
||||
pub const link_libc = false;
|
||||
pub const link_libcpp = false;
|
||||
pub const have_error_return_tracing = true;
|
||||
pub const valgrind_support = true;
|
||||
pub const sanitize_thread = false;
|
||||
pub const position_independent_code = false;
|
||||
pub const position_independent_executable = false;
|
||||
pub const strip_debug_info = false;
|
||||
pub const code_model = std.builtin.CodeModel.default;
|
BIN
prompt/zig-cache/o/f4cd4cfbc9ca19d9e6eaa91eb614ceb6/build
Executable file
BIN
prompt/zig-cache/o/f4cd4cfbc9ca19d9e6eaa91eb614ceb6/build
Executable file
Binary file not shown.
BIN
prompt/zig-cache/o/f4cd4cfbc9ca19d9e6eaa91eb614ceb6/build.o
Normal file
BIN
prompt/zig-cache/o/f4cd4cfbc9ca19d9e6eaa91eb614ceb6/build.o
Normal file
Binary file not shown.
BIN
prompt/zig-cache/z/5fe80f5aaa212179056dcc9d4ac4340c
Normal file
BIN
prompt/zig-cache/z/5fe80f5aaa212179056dcc9d4ac4340c
Normal file
Binary file not shown.
BIN
prompt/zig-cache/z/be2996289fa0abafb4d3e8e6401ddca3
Normal file
BIN
prompt/zig-cache/z/be2996289fa0abafb4d3e8e6401ddca3
Normal file
Binary file not shown.
BIN
prompt/zig-out/bin/nih-prompt
Executable file
BIN
prompt/zig-out/bin/nih-prompt
Executable file
Binary file not shown.
Loading…
Add table
Add a link
Reference in a new issue