Skip to content
This repository has been archived by the owner on Jan 23, 2025. It is now read-only.

Commit

Permalink
Explicitly link against libatomic for 32bit mips target cpu.
Browse files Browse the repository at this point in the history
    Bug: 821015
    Change-Id: I60824857a26ea8660b80aa22dafd33bb3fc42289
    Reviewed-on: https://chromium-review.googlesource.com/959120
    Reviewed-by: agrieve <[email protected]>
    Commit-Queue: agrieve <[email protected]>
    Cr-Commit-Position: refs/heads/master@{#542545}
  • Loading branch information
djordje-golubovic authored and kiwibrowser committed Oct 29, 2020
1 parent 04764b2 commit 2fea68a
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions build/config/android/BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -179,6 +179,10 @@ config("runtime_library") {
libs += [ "atomic" ]
}

if (current_cpu == "mipsel") {
libs += [ "atomic" ]
}

# TODO(jdduke) Re-enable on mips after resolving linking
# issues with libc++ (crbug.com/456380).
if (current_cpu != "mipsel" && current_cpu != "mips64el") {
Expand Down

0 comments on commit 2fea68a

Please sign in to comment.