Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding loongarch suport for grpc-java #9178

Merged
merged 1 commit into from
Jun 24, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion compiler/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ model {
linker.executable = 'aarch64-linux-gnu-g++'
}
target("s390_64")
target("loongarch_64")
}
clang(Clang) {
}
Expand All @@ -67,6 +68,7 @@ model {
ppcle_64 { architecture "ppcle_64" }
aarch_64 { architecture "aarch_64" }
s390_64 { architecture "s390_64" }
loongarch_64 { architecture "loongarch_64" }
}

components {
Expand All @@ -76,7 +78,8 @@ model {
'x86_64',
'ppcle_64',
'aarch_64',
's390_64'
's390_64',
'loongarch_64'
]) {
// If arch is not within the defined platforms, we do not specify the
// targetPlatform so that Gradle will choose what is appropriate.
Expand Down