Skip to content

Commit

Permalink
Adding loongarch suport for grpc-java
Browse files Browse the repository at this point in the history
  • Loading branch information
zhangwenlong8911 authored and ejona86 committed Jun 24, 2022
1 parent 04f9bdc commit 334fc32
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion compiler/build.gradle
Expand Up @@ -59,6 +59,7 @@ model {
linker.executable = 'aarch64-linux-gnu-g++'
}
target("s390_64")
target("loongarch_64")
}
clang(Clang) {
}
Expand All @@ -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 {
Expand All @@ -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.
Expand Down

0 comments on commit 334fc32

Please sign in to comment.