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.