mirror of
https://github.com/rcore-os/rCore.git
synced 2024-11-23 08:26:17 +04:00
Bugfix: x86_64 module compilation failure (#20)
This commit is contained in:
parent
7e1cb319e5
commit
7f769d280a
@ -3,4 +3,6 @@ fn main() {
|
||||
println!("cargo:rustc-link-search=all={}", path);
|
||||
let path = "../../kernel/target/aarch64/release/deps";
|
||||
println!("cargo:rustc-link-search=all={}", path);
|
||||
let path = "../../kernel/target/release/deps";
|
||||
println!("cargo:rustc-link-search=all={}", path);
|
||||
}
|
||||
|
@ -31,7 +31,8 @@ rustc --edition=2018 --crate-name hello_rust src/lib.rs \
|
||||
-L dependency=target/$ARCH/release/deps \
|
||||
-L dependency=target/release/deps \
|
||||
--emit=obj --sysroot target/sysroot \
|
||||
-L all=../../kernel/target/$ARCH/release/deps
|
||||
-L all=../../kernel/target/$ARCH/release/deps \
|
||||
-L all=../../kernel/target/release/deps
|
||||
echo "Step 3. Packing the library into kernel module."
|
||||
"$PREFIX"objcopy --input binary --output $TEXT_TYPE \
|
||||
--binary-architecture $BIN_ARCH\
|
||||
|
Loading…
Reference in New Issue
Block a user