]> git.lizzy.rs Git - loadnothing.git/commitdiff
Add dummy stage2
authorHimbeerserverDE <himbeerserverde@gmail.com>
Sun, 11 Sep 2022 13:50:10 +0000 (15:50 +0200)
committerHimbeerserverDE <himbeerserverde@gmail.com>
Sun, 11 Sep 2022 13:50:10 +0000 (15:50 +0200)
35 files changed:
stage2/Cargo.lock [new file with mode: 0644]
stage2/Cargo.toml [new file with mode: 0644]
stage2/src/main.rs [new file with mode: 0644]
stage2/target/.rustc_info.json [new file with mode: 0644]
stage2/target/CACHEDIR.TAG [new file with mode: 0644]
stage2/target/debug/.cargo-lock [new file with mode: 0644]
stage2/target/debug/.fingerprint/stage2-13aaf39db2db0d88/invoked.timestamp [new file with mode: 0644]
stage2/target/debug/.fingerprint/stage2-13aaf39db2db0d88/output-bin-stage2 [new file with mode: 0644]
stage2/target/debug/.fingerprint/stage2-8bc799b1535850bc/invoked.timestamp [new file with mode: 0644]
stage2/target/debug/.fingerprint/stage2-8bc799b1535850bc/output-bin-stage2 [new file with mode: 0644]
stage2/target/debug/.fingerprint/stage2-c1377f3d65fd4f77/bin-stage2 [new file with mode: 0644]
stage2/target/debug/.fingerprint/stage2-c1377f3d65fd4f77/bin-stage2.json [new file with mode: 0644]
stage2/target/debug/.fingerprint/stage2-c1377f3d65fd4f77/dep-bin-stage2 [new file with mode: 0644]
stage2/target/debug/.fingerprint/stage2-c1377f3d65fd4f77/invoked.timestamp [new file with mode: 0644]
stage2/target/debug/deps/libstage2-c1377f3d65fd4f77.rmeta [new file with mode: 0644]
stage2/target/debug/deps/stage2-13aaf39db2db0d88.d [new file with mode: 0644]
stage2/target/debug/deps/stage2-8bc799b1535850bc.d [new file with mode: 0644]
stage2/target/debug/deps/stage2-8bc799b1535850bc.nq6xkpn9t9y0e5c.rcgu.o [new file with mode: 0644]
stage2/target/debug/deps/stage2-c1377f3d65fd4f77.d [new file with mode: 0644]
stage2/target/debug/incremental/stage2-2ihwlnx8own8x/s-gdg6vl2b8c-goug7r-1vg4p0cw2eg5b/nq6xkpn9t9y0e5c.o [new file with mode: 0644]
stage2/target/debug/incremental/stage2-2ihwlnx8own8x/s-gdg6vl2b8c-goug7r.lock [new file with mode: 0755]
stage2/target/debug/incremental/stage2-325qwtcakeqch/s-gdg6kwm09n-1b3qnhg.lock [new file with mode: 0755]
stage2/target/debug/incremental/stage2-yr14phwevtpd/s-gdg6obv1po-tzx4b6.lock [new file with mode: 0755]
stage2/target/x86_64-unknown-none/CACHEDIR.TAG [new file with mode: 0644]
stage2/target/x86_64-unknown-none/debug/.cargo-lock [new file with mode: 0644]
stage2/target/x86_64-unknown-none/debug/.fingerprint/stage2-fc22b7458d55c820/bin-stage2 [new file with mode: 0644]
stage2/target/x86_64-unknown-none/debug/.fingerprint/stage2-fc22b7458d55c820/bin-stage2.json [new file with mode: 0644]
stage2/target/x86_64-unknown-none/debug/.fingerprint/stage2-fc22b7458d55c820/dep-bin-stage2 [new file with mode: 0644]
stage2/target/x86_64-unknown-none/debug/.fingerprint/stage2-fc22b7458d55c820/invoked.timestamp [new file with mode: 0644]
stage2/target/x86_64-unknown-none/debug/deps/stage2-fc22b7458d55c820 [new file with mode: 0755]
stage2/target/x86_64-unknown-none/debug/deps/stage2-fc22b7458d55c820.d [new file with mode: 0644]
stage2/target/x86_64-unknown-none/debug/incremental/stage2-1y21edoanrspg/s-gdg745vktt-1cv2bwu-2hnmmpfq1hulf/44p0hm3esc4p3cxs.o [new file with mode: 0644]
stage2/target/x86_64-unknown-none/debug/incremental/stage2-1y21edoanrspg/s-gdg745vktt-1cv2bwu.lock [new file with mode: 0755]
stage2/target/x86_64-unknown-none/debug/stage2 [new file with mode: 0755]
stage2/target/x86_64-unknown-none/debug/stage2.d [new file with mode: 0644]

diff --git a/stage2/Cargo.lock b/stage2/Cargo.lock
new file mode 100644 (file)
index 0000000..4f027e8
--- /dev/null
@@ -0,0 +1,7 @@
+# This file is automatically @generated by Cargo.
+# It is not intended for manual editing.
+version = 3
+
+[[package]]
+name = "stage2"
+version = "0.1.0"
diff --git a/stage2/Cargo.toml b/stage2/Cargo.toml
new file mode 100644 (file)
index 0000000..eaf63ed
--- /dev/null
@@ -0,0 +1,14 @@
+[package]
+name = "stage2"
+version = "0.1.0"
+edition = "2021"
+
+# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
+
+[profile.dev]
+panic = "abort"
+
+[profile.release]
+panic = "abort"
+
+[dependencies]
diff --git a/stage2/src/main.rs b/stage2/src/main.rs
new file mode 100644 (file)
index 0000000..43f9387
--- /dev/null
@@ -0,0 +1,14 @@
+#![no_std]
+#![no_main]
+
+use core::panic::PanicInfo;
+
+#[panic_handler]
+fn panic(_info: &PanicInfo) -> ! {
+    loop {}
+}
+
+#[no_mangle]
+pub extern "C" fn _start() -> ! {
+    loop {}
+}
diff --git a/stage2/target/.rustc_info.json b/stage2/target/.rustc_info.json
new file mode 100644 (file)
index 0000000..8837bba
--- /dev/null
@@ -0,0 +1 @@
+{"rustc_fingerprint":9609149863323521228,"outputs":{"15920007918861265601":{"success":false,"status":"exit status: 1","code":1,"stdout":"","stderr":"error: Error loading target specification: Could not find specification for target \"x86_64-none-eabihf\". Run `rustc --print target-list` for a list of built-in targets\n\n"},"4614504638168534921":{"success":true,"status":"","code":0,"stdout":"rustc 1.65.0-nightly (78a891d36 2022-09-06)\nbinary: rustc\ncommit-hash: 78a891d364a7358ed9eb9c93099ba2f3e6817ca6\ncommit-date: 2022-09-06\nhost: x86_64-unknown-linux-gnu\nrelease: 1.65.0-nightly\nLLVM version: 15.0.0\n","stderr":""},"10376369925670944939":{"success":true,"status":"","code":0,"stdout":"___\nlib___.rlib\nlib___.so\nlib___.so\nlib___.a\nlib___.so\n/home/himbeer/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu\ndebug_assertions\npanic=\"unwind\"\nproc_macro\ntarget_abi=\"\"\ntarget_arch=\"x86_64\"\ntarget_endian=\"little\"\ntarget_env=\"gnu\"\ntarget_family=\"unix\"\ntarget_feature=\"fxsr\"\ntarget_feature=\"llvm14-builtins-abi\"\ntarget_feature=\"sse\"\ntarget_feature=\"sse2\"\ntarget_has_atomic=\"16\"\ntarget_has_atomic=\"32\"\ntarget_has_atomic=\"64\"\ntarget_has_atomic=\"8\"\ntarget_has_atomic=\"ptr\"\ntarget_has_atomic_equal_alignment=\"16\"\ntarget_has_atomic_equal_alignment=\"32\"\ntarget_has_atomic_equal_alignment=\"64\"\ntarget_has_atomic_equal_alignment=\"8\"\ntarget_has_atomic_equal_alignment=\"ptr\"\ntarget_has_atomic_load_store=\"16\"\ntarget_has_atomic_load_store=\"32\"\ntarget_has_atomic_load_store=\"64\"\ntarget_has_atomic_load_store=\"8\"\ntarget_has_atomic_load_store=\"ptr\"\ntarget_os=\"linux\"\ntarget_pointer_width=\"64\"\ntarget_thread_local\ntarget_vendor=\"unknown\"\nunix\n","stderr":""},"15697416045686424142":{"success":true,"status":"","code":0,"stdout":"___\nlib___.rlib\nlib___.so\nlib___.so\nlib___.a\nlib___.so\n","stderr":""},"6540692758035458189":{"success":false,"status":"exit status: 1","code":1,"stdout":"","stderr":"error: Error loading target specification: Could not find specification for target \"x86_64-none-eabihf\". Run `rustc --print target-list` for a list of built-in targets\n\n"},"5799196771665985086":{"success":false,"status":"exit status: 1","code":1,"stdout":"___\nlib___.rlib\nlib___.a\n","stderr":"error: `-Csplit-debuginfo=packed` is unstable on this platform\n\nwarning: dropping unsupported crate type `dylib` for target `x86_64-unknown-none`\n\nwarning: dropping unsupported crate type `cdylib` for target `x86_64-unknown-none`\n\nwarning: dropping unsupported crate type `proc-macro` for target `x86_64-unknown-none`\n\nerror: aborting due to previous error; 3 warnings emitted\n\n"},"3424812980962492271":{"success":true,"status":"","code":0,"stdout":"___\nlib___.rlib\nlib___.a\n/home/himbeer/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu\ndebug_assertions\npanic=\"abort\"\nproc_macro\ntarget_abi=\"\"\ntarget_arch=\"x86_64\"\ntarget_endian=\"little\"\ntarget_env=\"\"\ntarget_feature=\"fxsr\"\ntarget_feature=\"llvm14-builtins-abi\"\ntarget_has_atomic=\"16\"\ntarget_has_atomic=\"32\"\ntarget_has_atomic=\"64\"\ntarget_has_atomic=\"8\"\ntarget_has_atomic=\"ptr\"\ntarget_has_atomic_equal_alignment=\"16\"\ntarget_has_atomic_equal_alignment=\"32\"\ntarget_has_atomic_equal_alignment=\"64\"\ntarget_has_atomic_equal_alignment=\"8\"\ntarget_has_atomic_equal_alignment=\"ptr\"\ntarget_has_atomic_load_store=\"16\"\ntarget_has_atomic_load_store=\"32\"\ntarget_has_atomic_load_store=\"64\"\ntarget_has_atomic_load_store=\"8\"\ntarget_has_atomic_load_store=\"ptr\"\ntarget_os=\"none\"\ntarget_pointer_width=\"64\"\ntarget_vendor=\"unknown\"\n","stderr":"warning: dropping unsupported crate type `dylib` for target `x86_64-unknown-none`\n\nwarning: dropping unsupported crate type `cdylib` for target `x86_64-unknown-none`\n\nwarning: dropping unsupported crate type `proc-macro` for target `x86_64-unknown-none`\n\nwarning: 3 warnings emitted\n\n"}},"successes":{}}
\ No newline at end of file
diff --git a/stage2/target/CACHEDIR.TAG b/stage2/target/CACHEDIR.TAG
new file mode 100644 (file)
index 0000000..20d7c31
--- /dev/null
@@ -0,0 +1,3 @@
+Signature: 8a477f597d28d172789f06886806bc55
+# This file is a cache directory tag created by cargo.
+# For information about cache directory tags see https://bford.info/cachedir/
diff --git a/stage2/target/debug/.cargo-lock b/stage2/target/debug/.cargo-lock
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/stage2/target/debug/.fingerprint/stage2-13aaf39db2db0d88/invoked.timestamp b/stage2/target/debug/.fingerprint/stage2-13aaf39db2db0d88/invoked.timestamp
new file mode 100644 (file)
index 0000000..e00328d
--- /dev/null
@@ -0,0 +1 @@
+This file has an mtime of when this was started.
\ No newline at end of file
diff --git a/stage2/target/debug/.fingerprint/stage2-13aaf39db2db0d88/output-bin-stage2 b/stage2/target/debug/.fingerprint/stage2-13aaf39db2db0d88/output-bin-stage2
new file mode 100644 (file)
index 0000000..11fceb0
--- /dev/null
@@ -0,0 +1,2 @@
+{"message":"language item required, but not found: `eh_personality`","code":null,"level":"error","spans":[],"children":[{"message":"this can occur when a binary crate with `#![no_std]` is compiled for a target where `eh_personality` is defined in the standard library","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"you may be able to compile for a target that doesn't need `eh_personality`, specify a target with `--target` or in `.cargo/config`","code":null,"level":"help","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror\u001b[0m\u001b[0m\u001b[1m: language item required, but not found: `eh_personality`\u001b[0m\n\u001b[0m  \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m  \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: this can occur when a binary crate with `#![no_std]` is compiled for a target where `eh_personality` is defined in the standard library\u001b[0m\n\u001b[0m  \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mhelp\u001b[0m\u001b[0m: you may be able to compile for a target that doesn't need `eh_personality`, specify a target with `--target` or in `.cargo/config`\u001b[0m\n\n"}
+{"message":"aborting due to previous error","code":null,"level":"error","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror\u001b[0m\u001b[0m\u001b[1m: aborting due to previous error\u001b[0m\n\n"}
diff --git a/stage2/target/debug/.fingerprint/stage2-8bc799b1535850bc/invoked.timestamp b/stage2/target/debug/.fingerprint/stage2-8bc799b1535850bc/invoked.timestamp
new file mode 100644 (file)
index 0000000..e00328d
--- /dev/null
@@ -0,0 +1 @@
+This file has an mtime of when this was started.
\ No newline at end of file
diff --git a/stage2/target/debug/.fingerprint/stage2-8bc799b1535850bc/output-bin-stage2 b/stage2/target/debug/.fingerprint/stage2-8bc799b1535850bc/output-bin-stage2
new file mode 100644 (file)
index 0000000..c2a1b12
--- /dev/null
@@ -0,0 +1,2 @@
+{"message":"linking with `cc` failed: exit status: 1","code":null,"level":"error","spans":[],"children":[{"message":"\"cc\" \"-m64\" \"/tmp/rustcPBp4Ft/symbols.o\" \"/home/himbeer/asm/loadnothing/stage2/target/debug/deps/stage2-8bc799b1535850bc.nq6xkpn9t9y0e5c.rcgu.o\" \"-Wl,--as-needed\" \"-L\" \"/home/himbeer/asm/loadnothing/stage2/target/debug/deps\" \"-L\" \"/home/himbeer/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib\" \"-Wl,-Bstatic\" \"/home/himbeer/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/librustc_std_workspace_core-522518611024dce5.rlib\" \"/home/himbeer/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libcore-05898138a596088a.rlib\" \"/home/himbeer/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libcompiler_builtins-5b83a1df856cf582.rlib\" \"-Wl,-Bdynamic\" \"-Wl,--eh-frame-hdr\" \"-Wl,-znoexecstack\" \"-L\" \"/home/himbeer/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib\" \"-o\" \"/home/himbeer/asm/loadnothing/stage2/target/debug/deps/stage2-8bc799b1535850bc\" \"-Wl,--gc-sections\" \"-pie\" \"-Wl,-zrelro,-znow\" \"-nodefaultlibs\"","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"/usr/bin/ld: /home/himbeer/asm/loadnothing/stage2/target/debug/deps/stage2-8bc799b1535850bc.nq6xkpn9t9y0e5c.rcgu.o: in function `_start':\n/home/himbeer/asm/loadnothing/stage2/src/main.rs:13: multiple definition of `_start'; /usr/lib/gcc/x86_64-pc-linux-gnu/12.2.0/../../../../lib/Scrt1.o:/build/glibc/src/glibc/csu/../sysdeps/x86_64/start.S:57: first defined here\n/usr/bin/ld: /usr/lib/gcc/x86_64-pc-linux-gnu/12.2.0/../../../../lib/Scrt1.o: in function `_start':\n/build/glibc/src/glibc/csu/../sysdeps/x86_64/start.S:103: undefined reference to `main'\n/usr/bin/ld: /build/glibc/src/glibc/csu/../sysdeps/x86_64/start.S:115: undefined reference to `__libc_start_main'\ncollect2: error: ld returned 1 exit status\n","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"some `extern` functions couldn't be found; some native libraries may need to be installed or have their path specified","code":null,"level":"help","spans":[],"children":[],"rendered":null},{"message":"use the `-l` flag to specify native libraries to link","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"use the `cargo:rustc-link-lib` directive to specify the native libraries to link with Cargo (see https://doc.rust-lang.org/cargo/reference/build-scripts.html#cargorustc-link-libkindname)","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror\u001b[0m\u001b[0m\u001b[1m: linking with `cc` failed: exit status: 1\u001b[0m\n\u001b[0m  \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m|\u001b[0m\n\u001b[0m  \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: \"cc\" \"-m64\" \"/tmp/rustcPBp4Ft/symbols.o\" \"/home/himbeer/asm/loadnothing/stage2/target/debug/deps/stage2-8bc799b1535850bc.nq6xkpn9t9y0e5c.rcgu.o\" \"-Wl,--as-needed\" \"-L\" \"/home/himbeer/asm/loadnothing/stage2/target/debug/deps\" \"-L\" \"/home/himbeer/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib\" \"-Wl,-Bstatic\" \"/home/himbeer/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/librustc_std_workspace_core-522518611024dce5.rlib\" \"/home/himbeer/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libcore-05898138a596088a.rlib\" \"/home/himbeer/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libcompiler_builtins-5b83a1df856cf582.rlib\" \"-Wl,-Bdynamic\" \"-Wl,--eh-frame-hdr\" \"-Wl,-znoexecstack\" \"-L\" \"/home/himbeer/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib\" \"-o\" \"/home/himbeer/asm/loadnothing/stage2/target/debug/deps/stage2-8bc799b1535850bc\" \"-Wl,--gc-sections\" \"-pie\" \"-Wl,-zrelro,-znow\" \"-nodefaultlibs\"\u001b[0m\n\u001b[0m  \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: /usr/bin/ld: /home/himbeer/asm/loadnothing/stage2/target/debug/deps/stage2-8bc799b1535850bc.nq6xkpn9t9y0e5c.rcgu.o: in function `_start':\u001b[0m\n\u001b[0m          /home/himbeer/asm/loadnothing/stage2/src/main.rs:13: multiple definition of `_start'; /usr/lib/gcc/x86_64-pc-linux-gnu/12.2.0/../../../../lib/Scrt1.o:/build/glibc/src/glibc/csu/../sysdeps/x86_64/start.S:57: first defined here\u001b[0m\n\u001b[0m          /usr/bin/ld: /usr/lib/gcc/x86_64-pc-linux-gnu/12.2.0/../../../../lib/Scrt1.o: in function `_start':\u001b[0m\n\u001b[0m          /build/glibc/src/glibc/csu/../sysdeps/x86_64/start.S:103: undefined reference to `main'\u001b[0m\n\u001b[0m          /usr/bin/ld: /build/glibc/src/glibc/csu/../sysdeps/x86_64/start.S:115: undefined reference to `__libc_start_main'\u001b[0m\n\u001b[0m          collect2: error: ld returned 1 exit status\u001b[0m\n\u001b[0m          \u001b[0m\n\u001b[0m  \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mhelp\u001b[0m\u001b[0m: some `extern` functions couldn't be found; some native libraries may need to be installed or have their path specified\u001b[0m\n\u001b[0m  \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: use the `-l` flag to specify native libraries to link\u001b[0m\n\u001b[0m  \u001b[0m\u001b[0m\u001b[1m\u001b[38;5;12m= \u001b[0m\u001b[0m\u001b[1mnote\u001b[0m\u001b[0m: use the `cargo:rustc-link-lib` directive to specify the native libraries to link with Cargo (see https://doc.rust-lang.org/cargo/reference/build-scripts.html#cargorustc-link-libkindname)\u001b[0m\n\n"}
+{"message":"aborting due to previous error","code":null,"level":"error","spans":[],"children":[],"rendered":"\u001b[0m\u001b[1m\u001b[38;5;9merror\u001b[0m\u001b[0m\u001b[1m: aborting due to previous error\u001b[0m\n\n"}
diff --git a/stage2/target/debug/.fingerprint/stage2-c1377f3d65fd4f77/bin-stage2 b/stage2/target/debug/.fingerprint/stage2-c1377f3d65fd4f77/bin-stage2
new file mode 100644 (file)
index 0000000..1f7e3fc
--- /dev/null
@@ -0,0 +1 @@
+04c0b070c1b118a9
\ No newline at end of file
diff --git a/stage2/target/debug/.fingerprint/stage2-c1377f3d65fd4f77/bin-stage2.json b/stage2/target/debug/.fingerprint/stage2-c1377f3d65fd4f77/bin-stage2.json
new file mode 100644 (file)
index 0000000..ddab1f7
--- /dev/null
@@ -0,0 +1 @@
+{"rustc":16324457427742275807,"features":"[]","target":12695973800279307188,"profile":3913718182372686134,"path":1684066648322511884,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/stage2-c1377f3d65fd4f77/dep-bin-stage2"}}],"rustflags":[],"metadata":7797948686568424061,"config":2202906307356721367,"compile_kind":0}
\ No newline at end of file
diff --git a/stage2/target/debug/.fingerprint/stage2-c1377f3d65fd4f77/dep-bin-stage2 b/stage2/target/debug/.fingerprint/stage2-c1377f3d65fd4f77/dep-bin-stage2
new file mode 100644 (file)
index 0000000..20847a2
Binary files /dev/null and b/stage2/target/debug/.fingerprint/stage2-c1377f3d65fd4f77/dep-bin-stage2 differ
diff --git a/stage2/target/debug/.fingerprint/stage2-c1377f3d65fd4f77/invoked.timestamp b/stage2/target/debug/.fingerprint/stage2-c1377f3d65fd4f77/invoked.timestamp
new file mode 100644 (file)
index 0000000..e00328d
--- /dev/null
@@ -0,0 +1 @@
+This file has an mtime of when this was started.
\ No newline at end of file
diff --git a/stage2/target/debug/deps/libstage2-c1377f3d65fd4f77.rmeta b/stage2/target/debug/deps/libstage2-c1377f3d65fd4f77.rmeta
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/stage2/target/debug/deps/stage2-13aaf39db2db0d88.d b/stage2/target/debug/deps/stage2-13aaf39db2db0d88.d
new file mode 100644 (file)
index 0000000..bb28140
--- /dev/null
@@ -0,0 +1,7 @@
+/home/himbeer/asm/loadnothing/stage2/target/debug/deps/stage2-13aaf39db2db0d88.rmeta: src/main.rs
+
+/home/himbeer/asm/loadnothing/stage2/target/debug/deps/stage2-13aaf39db2db0d88.d: src/main.rs
+
+src/main.rs:
+
+# env-dep:CLIPPY_ARGS=
diff --git a/stage2/target/debug/deps/stage2-8bc799b1535850bc.d b/stage2/target/debug/deps/stage2-8bc799b1535850bc.d
new file mode 100644 (file)
index 0000000..1bebd07
--- /dev/null
@@ -0,0 +1,5 @@
+/home/himbeer/asm/loadnothing/stage2/target/debug/deps/stage2-8bc799b1535850bc: src/main.rs
+
+/home/himbeer/asm/loadnothing/stage2/target/debug/deps/stage2-8bc799b1535850bc.d: src/main.rs
+
+src/main.rs:
diff --git a/stage2/target/debug/deps/stage2-8bc799b1535850bc.nq6xkpn9t9y0e5c.rcgu.o b/stage2/target/debug/deps/stage2-8bc799b1535850bc.nq6xkpn9t9y0e5c.rcgu.o
new file mode 100644 (file)
index 0000000..2aaf242
Binary files /dev/null and b/stage2/target/debug/deps/stage2-8bc799b1535850bc.nq6xkpn9t9y0e5c.rcgu.o differ
diff --git a/stage2/target/debug/deps/stage2-c1377f3d65fd4f77.d b/stage2/target/debug/deps/stage2-c1377f3d65fd4f77.d
new file mode 100644 (file)
index 0000000..7a15475
--- /dev/null
@@ -0,0 +1,7 @@
+/home/himbeer/asm/loadnothing/stage2/target/debug/deps/stage2-c1377f3d65fd4f77.rmeta: src/main.rs
+
+/home/himbeer/asm/loadnothing/stage2/target/debug/deps/stage2-c1377f3d65fd4f77.d: src/main.rs
+
+src/main.rs:
+
+# env-dep:CLIPPY_ARGS=
diff --git a/stage2/target/debug/incremental/stage2-2ihwlnx8own8x/s-gdg6vl2b8c-goug7r-1vg4p0cw2eg5b/nq6xkpn9t9y0e5c.o b/stage2/target/debug/incremental/stage2-2ihwlnx8own8x/s-gdg6vl2b8c-goug7r-1vg4p0cw2eg5b/nq6xkpn9t9y0e5c.o
new file mode 100644 (file)
index 0000000..2aaf242
Binary files /dev/null and b/stage2/target/debug/incremental/stage2-2ihwlnx8own8x/s-gdg6vl2b8c-goug7r-1vg4p0cw2eg5b/nq6xkpn9t9y0e5c.o differ
diff --git a/stage2/target/debug/incremental/stage2-2ihwlnx8own8x/s-gdg6vl2b8c-goug7r.lock b/stage2/target/debug/incremental/stage2-2ihwlnx8own8x/s-gdg6vl2b8c-goug7r.lock
new file mode 100755 (executable)
index 0000000..e69de29
diff --git a/stage2/target/debug/incremental/stage2-325qwtcakeqch/s-gdg6kwm09n-1b3qnhg.lock b/stage2/target/debug/incremental/stage2-325qwtcakeqch/s-gdg6kwm09n-1b3qnhg.lock
new file mode 100755 (executable)
index 0000000..e69de29
diff --git a/stage2/target/debug/incremental/stage2-yr14phwevtpd/s-gdg6obv1po-tzx4b6.lock b/stage2/target/debug/incremental/stage2-yr14phwevtpd/s-gdg6obv1po-tzx4b6.lock
new file mode 100755 (executable)
index 0000000..e69de29
diff --git a/stage2/target/x86_64-unknown-none/CACHEDIR.TAG b/stage2/target/x86_64-unknown-none/CACHEDIR.TAG
new file mode 100644 (file)
index 0000000..20d7c31
--- /dev/null
@@ -0,0 +1,3 @@
+Signature: 8a477f597d28d172789f06886806bc55
+# This file is a cache directory tag created by cargo.
+# For information about cache directory tags see https://bford.info/cachedir/
diff --git a/stage2/target/x86_64-unknown-none/debug/.cargo-lock b/stage2/target/x86_64-unknown-none/debug/.cargo-lock
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/stage2/target/x86_64-unknown-none/debug/.fingerprint/stage2-fc22b7458d55c820/bin-stage2 b/stage2/target/x86_64-unknown-none/debug/.fingerprint/stage2-fc22b7458d55c820/bin-stage2
new file mode 100644 (file)
index 0000000..d77033e
--- /dev/null
@@ -0,0 +1 @@
+b84bcfb2130b1840
\ No newline at end of file
diff --git a/stage2/target/x86_64-unknown-none/debug/.fingerprint/stage2-fc22b7458d55c820/bin-stage2.json b/stage2/target/x86_64-unknown-none/debug/.fingerprint/stage2-fc22b7458d55c820/bin-stage2.json
new file mode 100644 (file)
index 0000000..6c248ac
--- /dev/null
@@ -0,0 +1 @@
+{"rustc":16324457427742275807,"features":"[]","target":12695973800279307188,"profile":3092253626210828057,"path":1684066648322511884,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"x86_64-unknown-none/debug/.fingerprint/stage2-fc22b7458d55c820/dep-bin-stage2"}}],"rustflags":[],"metadata":7797948686568424061,"config":2202906307356721367,"compile_kind":12696962690237916270}
\ No newline at end of file
diff --git a/stage2/target/x86_64-unknown-none/debug/.fingerprint/stage2-fc22b7458d55c820/dep-bin-stage2 b/stage2/target/x86_64-unknown-none/debug/.fingerprint/stage2-fc22b7458d55c820/dep-bin-stage2
new file mode 100644 (file)
index 0000000..5fdf103
Binary files /dev/null and b/stage2/target/x86_64-unknown-none/debug/.fingerprint/stage2-fc22b7458d55c820/dep-bin-stage2 differ
diff --git a/stage2/target/x86_64-unknown-none/debug/.fingerprint/stage2-fc22b7458d55c820/invoked.timestamp b/stage2/target/x86_64-unknown-none/debug/.fingerprint/stage2-fc22b7458d55c820/invoked.timestamp
new file mode 100644 (file)
index 0000000..e00328d
--- /dev/null
@@ -0,0 +1 @@
+This file has an mtime of when this was started.
\ No newline at end of file
diff --git a/stage2/target/x86_64-unknown-none/debug/deps/stage2-fc22b7458d55c820 b/stage2/target/x86_64-unknown-none/debug/deps/stage2-fc22b7458d55c820
new file mode 100755 (executable)
index 0000000..7c8abcd
Binary files /dev/null and b/stage2/target/x86_64-unknown-none/debug/deps/stage2-fc22b7458d55c820 differ
diff --git a/stage2/target/x86_64-unknown-none/debug/deps/stage2-fc22b7458d55c820.d b/stage2/target/x86_64-unknown-none/debug/deps/stage2-fc22b7458d55c820.d
new file mode 100644 (file)
index 0000000..a2d42e5
--- /dev/null
@@ -0,0 +1,5 @@
+/home/himbeer/asm/loadnothing/stage2/target/x86_64-unknown-none/debug/deps/stage2-fc22b7458d55c820: src/main.rs
+
+/home/himbeer/asm/loadnothing/stage2/target/x86_64-unknown-none/debug/deps/stage2-fc22b7458d55c820.d: src/main.rs
+
+src/main.rs:
diff --git a/stage2/target/x86_64-unknown-none/debug/incremental/stage2-1y21edoanrspg/s-gdg745vktt-1cv2bwu-2hnmmpfq1hulf/44p0hm3esc4p3cxs.o b/stage2/target/x86_64-unknown-none/debug/incremental/stage2-1y21edoanrspg/s-gdg745vktt-1cv2bwu-2hnmmpfq1hulf/44p0hm3esc4p3cxs.o
new file mode 100644 (file)
index 0000000..8ea9b75
Binary files /dev/null and b/stage2/target/x86_64-unknown-none/debug/incremental/stage2-1y21edoanrspg/s-gdg745vktt-1cv2bwu-2hnmmpfq1hulf/44p0hm3esc4p3cxs.o differ
diff --git a/stage2/target/x86_64-unknown-none/debug/incremental/stage2-1y21edoanrspg/s-gdg745vktt-1cv2bwu.lock b/stage2/target/x86_64-unknown-none/debug/incremental/stage2-1y21edoanrspg/s-gdg745vktt-1cv2bwu.lock
new file mode 100755 (executable)
index 0000000..e69de29
diff --git a/stage2/target/x86_64-unknown-none/debug/stage2 b/stage2/target/x86_64-unknown-none/debug/stage2
new file mode 100755 (executable)
index 0000000..7c8abcd
Binary files /dev/null and b/stage2/target/x86_64-unknown-none/debug/stage2 differ
diff --git a/stage2/target/x86_64-unknown-none/debug/stage2.d b/stage2/target/x86_64-unknown-none/debug/stage2.d
new file mode 100644 (file)
index 0000000..23d7859
--- /dev/null
@@ -0,0 +1 @@
+/home/himbeer/asm/loadnothing/stage2/target/x86_64-unknown-none/debug/stage2: /home/himbeer/asm/loadnothing/stage2/src/main.rs