NetBSD build, anyone? #12811
Unanswered
isbm
asked this question in
Troubleshooting
Replies: 2 comments
-
I don't really know why or what's happening but some ramblings none the less: You can try to pin point it by cargo clean
cargo build --message-format=json > build_output.json Now check line 292 in jq -r 'select(.reason == "compiler-artifact" or .reason == "build-script-executed") | "\(.package_id) \(.target.name)"' build_output.json | nl -v 1 > step_list.txt
sed -n '292p' step_list.txt For me, this step matches with {
"reason": "build-script-executed",
"package_id": "helix-term 25.1.1 (path+file:///home/ab/github.com/helix/helix-term)",
"linked_libs": [],
"linked_paths": [],
"cfgs": [],
"env": [],
"out_dir": "/home/ab/github.com/helix/target/debug/build/helix-term-62afdf992ae4856d/out"
} Do you see a temp folder in target/debug/build? ls target/debug/build/helix-term-62afdf992ae4856d/
out invoked.timestamp output root-output stderr |
Beta Was this translation helpful? Give feedback.
0 replies
-
@AlexanderBrevig well, that for me looks this:
The whole {
"reason": "compiler-artifact",
"package_id": "registry+https://github.com/rust-lang/crates.io-index#[email protected]",
"manifest_path": "/home/bo/.cargo/registry/src/index.crates.io-6f17d22bba15001f/grep-searcher-0.1.14/Cargo.toml",
"target": {
"kind": [
"lib"
],
"crate_types": [
"lib"
],
"name": "grep_searcher",
"src_path": "/home/bo/.cargo/registry/src/index.crates.io-6f17d22bba15001f/grep-searcher-0.1.14/src/lib.rs",
"edition": "2021",
"doc": true,
"doctest": true,
"test": true
},
"profile": {
"opt_level": "0",
"debuginfo": 2,
"debug_assertions": true,
"overflow_checks": true,
"test": false
},
"features": [],
"filenames": [
"/home/bo/work/helix/target/debug/deps/libgrep_searcher-a742e9a815316628.rlib",
"/home/bo/work/helix/target/debug/deps/libgrep_searcher-a742e9a815316628.rmeta"
],
"executable": null,
"fresh": false
} Here it gets totally hosed and stucks forever. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I wanted Helix, because nothing else works on NetBSD 😉 Still,
seems Helix is also out of complete luck as follows:
That hangs until forever. Same with the 1.76 version, for the record,
so this rules out "please use 1.76 rust".
Trace shows it is trying to sync with something, waiting, but I don't
know much:
Beta Was this translation helpful? Give feedback.
All reactions