Jeremy Soller пре 4 година
родитељ
комит
ebb17654f8
2 измењених фајлова са 2 додато и 0 уклоњено
  1. 1 0
      src/crt0/src/lib.rs
  2. 1 0
      src/ld_so/src/lib.rs

+ 1 - 0
src/crt0/src/lib.rs

@@ -3,6 +3,7 @@
 #![no_std]
 #![feature(asm)]
 #![feature(linkage)]
+#![feature(llvm_asm)]
 #![feature(naked_functions)]
 
 #[no_mangle]

+ 1 - 0
src/ld_so/src/lib.rs

@@ -1,6 +1,7 @@
 #![no_std]
 #![feature(asm)]
 #![feature(linkage)]
+#![feature(llvm_asm)]
 #![feature(naked_functions)]
 
 #[naked]