Commit dca3bb15 authored by Djordje Golubovic's avatar Djordje Golubovic Committed by Commit Bot

Explicitly link against libatomic for 32bit mips target cpu.

Bug: 821015
Change-Id: I60824857a26ea8660b80aa22dafd33bb3fc42289
Reviewed-on: https://chromium-review.googlesource.com/959120Reviewed-by: default avataragrieve <agrieve@chromium.org>
Commit-Queue: agrieve <agrieve@chromium.org>
Cr-Commit-Position: refs/heads/master@{#542545}
parent 3bf2acc8
......@@ -170,6 +170,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") {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment