1
0
mirror of https://github.com/rcore-os/rCore.git synced 2024-11-23 08:26:17 +04:00

aarch64: change linker to rust-lld

This commit is contained in:
equation314 2018-10-29 21:34:29 +08:00
parent 7746485861
commit ae5260db5c

View File

@ -10,11 +10,11 @@
"arch": "aarch64",
"data-layout": "e-m:e-i8:8:32-i16:16:32-i64:64-i128:128-n32:64-S128",
"executables": true,
"linker": "aarch64-none-elf-ld",
"linker-flavor": "ld",
"linker": "rust-lld",
"linker-flavor": "ld.lld",
"linker-is-gnu": true,
"pre-link-args": {
"ld": [
"ld.lld": [
"-Tsrc/arch/aarch64/boot/linker.ld"
]
},