Skip to content

Commit a590c2f

Browse files
committed
LoongArch: Enable initial Rust support
Add initial Rust support for LoongArch. Signed-off-by: WANG Rui <[email protected]>
1 parent 8d774e4 commit a590c2f

File tree

4 files changed

+15
-0
lines changed

4 files changed

+15
-0
lines changed

Documentation/rust/arch-support.rst

+1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ support corresponds to ``S`` values in the ``MAINTAINERS`` file.
1515
============ ================ ==============================================
1616
Architecture Level of support Constraints
1717
============ ================ ==============================================
18+
``loongarch`` Maintained
1819
``um`` Maintained ``x86_64`` only.
1920
``x86`` Maintained ``x86_64`` only.
2021
============ ================ ==============================================

arch/loongarch/Kconfig

+1
Original file line numberDiff line numberDiff line change
@@ -140,6 +140,7 @@ config LOONGARCH
140140
select HAVE_REGS_AND_STACK_ACCESS_API
141141
select HAVE_RETHOOK
142142
select HAVE_RSEQ
143+
select HAVE_RUST
143144
select HAVE_SAMPLE_FTRACE_DIRECT
144145
select HAVE_SAMPLE_FTRACE_DIRECT_MULTI
145146
select HAVE_SETUP_PER_CPU_AREA if NUMA

arch/loongarch/Makefile

+3
Original file line numberDiff line numberDiff line change
@@ -81,8 +81,11 @@ KBUILD_AFLAGS_MODULE += -Wa,-mla-global-with-abs
8181
KBUILD_CFLAGS_MODULE += -fplt -Wa,-mla-global-with-abs,-mla-local-with-abs
8282
endif
8383

84+
KBUILD_RUSTFLAGS_MODULE += -Crelocation-model=pic
85+
8486
ifeq ($(CONFIG_RELOCATABLE),y)
8587
KBUILD_CFLAGS_KERNEL += -fPIE
88+
KBUILD_RUSTFLAGS_KERNEL += -Crelocation-model=pie
8689
LDFLAGS_vmlinux += -static -pie --no-dynamic-linker -z notext
8790
endif
8891

scripts/generate_rust_target.rs

+10
Original file line numberDiff line numberDiff line change
@@ -161,6 +161,16 @@ fn main() {
161161
ts.push("features", features);
162162
ts.push("llvm-target", "x86_64-linux-gnu");
163163
ts.push("target-pointer-width", "64");
164+
} else if cfg.has("LOONGARCH") {
165+
ts.push("arch", "loongarch64");
166+
ts.push(
167+
"data-layout",
168+
"e-m:e-p:64:64-i64:64-i128:128-n64-S128",
169+
);
170+
ts.push("features", "-f,-d");
171+
ts.push("llvm-target", "loongarch64-linux-gnusf");
172+
ts.push("llvm-abiname", "lp64s");
173+
ts.push("target-pointer-width", "64");
164174
} else {
165175
panic!("Unsupported architecture");
166176
}

0 commit comments

Comments
 (0)