Adding s390x suport ot grpc-java

This commit is contained in:
Nayana-ibm 2019-10-03 23:41:35 -07:00 committed by Eric Anderson
parent ce2b0174b2
commit 198ca2904a
1 changed files with 4 additions and 1 deletions

View File

@ -52,6 +52,7 @@ model {
gcc(Gcc) { gcc(Gcc) {
target("ppcle_64") target("ppcle_64")
target("aarch_64") target("aarch_64")
target("s390_64")
} }
clang(Clang) { clang(Clang) {
} }
@ -62,6 +63,7 @@ model {
x86_64 { architecture "x86_64" } x86_64 { architecture "x86_64" }
ppcle_64 { architecture "ppcle_64" } ppcle_64 { architecture "ppcle_64" }
aarch_64 { architecture "aarch_64" } aarch_64 { architecture "aarch_64" }
s390_64 { architecture "s390_64" }
} }
components { components {
@ -70,7 +72,8 @@ model {
'x86_32', 'x86_32',
'x86_64', 'x86_64',
'ppcle_64', 'ppcle_64',
'aarch_64' 'aarch_64',
's390_64'
]) { ]) {
// If arch is not within the defined platforms, we do not specify the // If arch is not within the defined platforms, we do not specify the
// targetPlatform so that Gradle will choose what is appropriate. // targetPlatform so that Gradle will choose what is appropriate.