From 198ca2904a75b065ddf12f27445def756961ccab Mon Sep 17 00:00:00 2001 From: Nayana-ibm Date: Thu, 3 Oct 2019 23:41:35 -0700 Subject: [PATCH] Adding s390x suport ot grpc-java --- compiler/build.gradle | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/compiler/build.gradle b/compiler/build.gradle index ad2a609b6e..408bbdede9 100644 --- a/compiler/build.gradle +++ b/compiler/build.gradle @@ -52,6 +52,7 @@ model { gcc(Gcc) { target("ppcle_64") target("aarch_64") + target("s390_64") } clang(Clang) { } @@ -62,6 +63,7 @@ model { 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 @@ model { '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.