diff --git a/crates/rustc_codegen_nvvm/build.rs b/crates/rustc_codegen_nvvm/build.rs index 2b663329..cadf59b2 100644 --- a/crates/rustc_codegen_nvvm/build.rs +++ b/crates/rustc_codegen_nvvm/build.rs @@ -53,8 +53,8 @@ pub fn output(cmd: &mut Command) -> String { fn target_to_llvm_prebuilt(target: &str) -> String { let base = match target { "x86_64-pc-windows-msvc" => "windows-x86_64", - // NOTE(RDambrosio016): currently disabled because of weird issues with segfaults and building the C++ shim - // "x86_64-unknown-linux-gnu" => "linux-x86_64", + // NOTE(LegNeato): was disabled in the past because of weird issues with segfaults and building the C++ shim. Need to investigate if they are still around. + "x86_64-unknown-linux-gnu" => "linux-x86_64", _ => panic!("Unsupported target with no matching prebuilt LLVM: `{}`, install LLVM and set LLVM_CONFIG", target) }; format!("{}.tar.xz", base) @@ -90,6 +90,7 @@ fn find_llvm_config(target: &str) -> PathBuf { .map(|x| x.to_string_lossy().to_string()) .unwrap_or_else(|| PREBUILT_LLVM_URL.to_string()); + println!("cargo:warning=Using prebuilt LLVM from {}", url); let prebuilt_name = target_to_llvm_prebuilt(target); url = format!("{}{}", url, prebuilt_name); diff --git a/rust-toolchain b/rust-toolchain index 4937196f..567abb41 100644 --- a/rust-toolchain +++ b/rust-toolchain @@ -6,4 +6,4 @@ [toolchain] channel = "nightly-2025-01-23" -components = ["rust-src", "rustc-dev", "llvm-tools-preview"] \ No newline at end of file +components = ["rust-src", "rustc-dev", "llvm-tools-preview"]