We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e03c7af commit 7f414feCopy full SHA for 7f414fe
build.rs
@@ -526,13 +526,8 @@ mod c {
526
// That said, it's unclear how useful this added complexity will be, so just do the simple
527
// thing for now.
528
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
535
println!("cargo:rerun-if-changed={}", outlined_atomics_file.display());
+
536
let out_dir: PathBuf = env::var("OUT_DIR").unwrap().into();
537
538
// Ideally, this would be a Vec of object files, but cc doesn't make it *entirely*
0 commit comments