Skip to content

Commit 96ecfad

Browse files
authored
Merge pull request #1100 from heiher/limb-64-la64
Set limb width to 64 for loongarch64
2 parents df5cf21 + c80dbaf commit 96ecfad

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ fn main() {
77
// src/lexical/math.rs for where this has an effect.
88
let target_arch = env::var("CARGO_CFG_TARGET_ARCH").unwrap();
99
match target_arch.as_str() {
10-
"aarch64" | "mips64" | "powerpc64" | "x86_64" => {
10+
"aarch64" | "mips64" | "powerpc64" | "x86_64" | "loongarch64" => {
1111
println!("cargo:rustc-cfg=limb_width_64");
1212
}
1313
_ => {

0 commit comments

Comments
 (0)