mirror of https://github.com/grpc/grpc-java.git
Adding s390x suport ot grpc-java
This commit is contained in:
parent
ce2b0174b2
commit
198ca2904a
|
|
@ -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.
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue