Skip to content

Commit

Permalink
Fix linux crashpad 64bit native build (#3426)
Browse files Browse the repository at this point in the history
Problem:
crashpad use native target build which use boringssl. and 64bit build
fail.

Solution:
Add 64bit build case

Verify:
Local test

https://partnerissuetracker.corp.google.com/u/0/issues/310759560

b/310759560

Co-authored-by: Kaido Kert <[email protected]>
  • Loading branch information
Hyobo and kaidokert committed Jul 9, 2024
1 parent 5c19f3f commit 9491db6
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions third_party/boringssl/BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -309,6 +309,8 @@ if (!use_cobalt_customizations) {
sources += crypto_sources_linux_x86_64
} else if (target_cpu == "arm") {
sources += crypto_sources_linux_arm
} else if (target_cpu == "arm64") {
sources += crypto_sources_linux_aarch64
} else {
assert(false, "Unsupported Linux or Android arch for native build")
}
Expand Down

0 comments on commit 9491db6

Please sign in to comment.