the config enables these tools tools = [ "cargo", "clippy", "rustdoc", "rustfmt", "rust-analyzer-proc-macro-srv", "analysis", "src", ] but wasm-component-ld is built anyway and (starting with 1.82.0) installed into target's sysroot even ...
Member Byron commented Sep 3, 2023 CI doesn't seem to reproduce the issue in particular as it can't find the toolchain in the first place: https://github.com/rust-lang/libz-sys/actions/runs/6062781035/job/16449371625?pr=154. Do you have any hints on how to reproduce this issue? The...
@@ -12,7 +12,7 @@ Rust bindings to [the MLIR C API](https://mlir.llvm.org/docs/CAPI/). cargo add mlir-sys ``` This crate searches an `llvm-config` command on build and uses it to determine build configurations related to LLVM and MLIR. You can also use a `MLIR_SYS_160_PRE...
+llvm::opt::ArgStringList &CC1Args) const {+const Driver &D = getDriver();+std::string SysRoot = computeSysRoot();+std::string LibPath = SysRoot + "/include";+const std::string MultiarchTriple =+getMultiarchTriple(D, getTriple(), SysRoot);++std::string TargetDir = LibPath + "/...
"cargo:rustc-link-search={}", path.parent().unwrap().display() ); println!( "cargo:rustc-link-lib={}", path.file_name() .unwrap() .to_str() .unwrap() .split_once('.') .unwrap() .0 .trim_start_matches("lib") ); } else { println!("cargo:rustc-link-lib={}", flag)...
-uses:Swatinem/rust-cache@v2 19- -uses:Homebrew/actions/setup-homebrew@master 20- -run:tools/setup.sh 22+ -name:add llvm deb repository 23+ uses:myci-actions/add-deb-repo@11 24+ with: 25+ repo:deb http://apt.llvm.org/jammy/ llvm-toolchain-jammy-18 main ...
- uses: Swatinem/rust-cache@v2 - name: add llvm deb repository uses: myci-actions/add-deb-repo@11 with: repo: deb http://apt.llvm.org/jammy/ llvm-toolchain-jammy-18 main repo-name: llvm-repo keys-asc: https://apt.llvm.org/llvm-snapshot.gpg.key - name: Install LLVM run: sudo...