File tree 3 files changed +21
-0
lines changed
compiler/rustc_target/src/spec
3 files changed +21
-0
lines changed Original file line number Diff line number Diff line change
1
+ use crate :: spec:: { base, Target , TargetOptions } ;
2
+
3
+ pub fn target ( ) -> Target {
4
+ Target {
5
+ llvm_target : "loongarch64-unknown-linux-musl" . into ( ) ,
6
+ description : None ,
7
+ pointer_width : 64 ,
8
+ data_layout : "e-m:e-p:64:64-i64:64-i128:128-n64-S128" . into ( ) ,
9
+ arch : "loongarch64" . into ( ) ,
10
+ options : TargetOptions {
11
+ cpu : "generic" . into ( ) ,
12
+ features : "+f,+d" . into ( ) ,
13
+ llvm_abiname : "lp64d" . into ( ) ,
14
+ max_atomic_width : Some ( 64 ) ,
15
+ crt_static_default : false ,
16
+ ..base:: linux_musl:: opts ( )
17
+ } ,
18
+ }
19
+ }
Original file line number Diff line number Diff line change @@ -1242,6 +1242,7 @@ supported_targets! {
1242
1242
( "i686-unknown-linux-gnu" , i686_unknown_linux_gnu) ,
1243
1243
( "i586-unknown-linux-gnu" , i586_unknown_linux_gnu) ,
1244
1244
( "loongarch64-unknown-linux-gnu" , loongarch64_unknown_linux_gnu) ,
1245
+ ( "loongarch64-unknown-linux-musl" , loongarch64_unknown_linux_musl) ,
1245
1246
( "m68k-unknown-linux-gnu" , m68k_unknown_linux_gnu) ,
1246
1247
( "mips-unknown-linux-gnu" , mips_unknown_linux_gnu) ,
1247
1248
( "mips64-unknown-linux-gnuabi64" , mips64_unknown_linux_gnuabi64) ,
Original file line number Diff line number Diff line change @@ -155,6 +155,7 @@ target | std | notes
155
155
` i686-unknown-freebsd ` | ✓ | 32-bit FreeBSD
156
156
` i686-unknown-linux-musl ` | ✓ | 32-bit Linux with MUSL
157
157
[ ` i686-unknown-uefi ` ] ( platform-support/unknown-uefi.md ) | * | 32-bit UEFI
158
+ [ ` loongarch64-unknown-linux-musl ` ] ( platform-support/loongarch-linux.md ) | ? | | LoongArch64 Linux (LP64D ABI)
158
159
[ ` loongarch64-unknown-none ` ] ( platform-support/loongarch-none.md ) | * | | LoongArch64 Bare-metal (LP64D ABI)
159
160
[ ` loongarch64-unknown-none-softfloat ` ] ( platform-support/loongarch-none.md ) | * | | LoongArch64 Bare-metal (LP64S ABI)
160
161
` mips-unknown-linux-musl ` | ✓ | MIPS Linux with MUSL
You can’t perform that action at this time.
0 commit comments