diff --git a/compiler/build.gradle b/compiler/build.gradle index 1f2c66f4d1..22aa41af0b 100644 --- a/compiler/build.gradle +++ b/compiler/build.gradle @@ -59,6 +59,7 @@ model { linker.executable = 'aarch64-linux-gnu-g++' } target("s390_64") + target("loongarch_64") } clang(Clang) { } @@ -70,6 +71,7 @@ model { ppcle_64 { architecture "ppcle_64" } aarch_64 { architecture "aarch_64" } s390_64 { architecture "s390_64" } + loongarch_64 { architecture "loongarch_64" } } components { @@ -79,7 +81,8 @@ model { 'x86_64', 'ppcle_64', 'aarch_64', - 's390_64' + 's390_64', + 'loongarch_64' ]) { // If arch is not within the defined platforms, we do not specify the // targetPlatform so that Gradle will choose what is appropriate.