Skip to content
Snippets Groups Projects
Commit 52434b35 authored by Jeremy Soller's avatar Jeremy Soller
Browse files

Disable building aarch64 asm

parent ff738074
No related branches found
No related tags found
No related merge requests found
...@@ -28,6 +28,7 @@ fn main() { ...@@ -28,6 +28,7 @@ fn main() {
asm(&out_dir); asm(&out_dir);
// Build pre kstart init asm code for aarch64 // Build pre kstart init asm code for aarch64
/*TODO: do we need any of this?
let cfg = Cfg::new(env::var_os("TARGET").unwrap()).unwrap(); let cfg = Cfg::new(env::var_os("TARGET").unwrap()).unwrap();
if cfg.target_arch == "aarch64" { if cfg.target_arch == "aarch64" {
println!("cargo:rerun-if-changed=src/arch/aarch64/init/pre_kstart/early_init.S"); println!("cargo:rerun-if-changed=src/arch/aarch64/init/pre_kstart/early_init.S");
...@@ -36,4 +37,5 @@ fn main() { ...@@ -36,4 +37,5 @@ fn main() {
.target("aarch64-unknown-redox") .target("aarch64-unknown-redox")
.compile("early_init"); .compile("early_init");
} }
*/
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment