Skip to content

Commit 7f414fe

Browse files
committed
Require lse.S (now available in current LLVM)
1 parent e03c7af commit 7f414fe

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

build.rs

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -526,13 +526,8 @@ mod c {
526526
// That said, it's unclear how useful this added complexity will be, so just do the simple
527527
// thing for now.
528528
let outlined_atomics_file = builtins_dir.join("aarch64/lse.S");
529-
530-
// A stable release hasn't been made with lse.S yet. Until we pick that up, do nothing.
531-
if !outlined_atomics_file.exists() {
532-
return vec![];
533-
}
534-
535529
println!("cargo:rerun-if-changed={}", outlined_atomics_file.display());
530+
536531
let out_dir: PathBuf = env::var("OUT_DIR").unwrap().into();
537532

538533
// Ideally, this would be a Vec of object files, but cc doesn't make it *entirely*

0 commit comments

Comments
 (0)