Adding s390x suport ot grpc-java
diff --git a/compiler/build.gradle b/compiler/build.gradle
index ad2a609..408bbde 100644
--- a/compiler/build.gradle
+++ b/compiler/build.gradle
@@ -52,6 +52,7 @@
gcc(Gcc) {
target("ppcle_64")
target("aarch_64")
+ target("s390_64")
}
clang(Clang) {
}
@@ -62,6 +63,7 @@
x86_64 { architecture "x86_64" }
ppcle_64 { architecture "ppcle_64" }
aarch_64 { architecture "aarch_64" }
+ s390_64 { architecture "s390_64" }
}
components {
@@ -70,7 +72,8 @@
'x86_32',
'x86_64',
'ppcle_64',
- 'aarch_64'
+ 'aarch_64',
+ 's390_64'
]) {
// If arch is not within the defined platforms, we do not specify the
// targetPlatform so that Gradle will choose what is appropriate.