mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-21 21:06:12 +03:00
android: base: Fix build adding extra -latomic
We don't use use_sysroot=true, but without it -latomic is added to is_android.
This commit is contained in:
parent
834cb4545e
commit
bbb5b38273
@ -1095,7 +1095,7 @@ component("base") {
|
|||||||
# Needed for <atomic> if using newer C++ library than sysroot, except if
|
# Needed for <atomic> if using newer C++ library than sysroot, except if
|
||||||
# building inside the cros_sdk environment - use host_toolchain as a
|
# building inside the cros_sdk environment - use host_toolchain as a
|
||||||
# more robust check for this.
|
# more robust check for this.
|
||||||
if (!use_sysroot && (is_android || is_chromeos || (is_linux && !is_castos)) &&
|
if (!use_sysroot && (is_chromeos || (is_linux && !is_castos)) &&
|
||||||
host_toolchain != "//build/toolchain/cros:host") {
|
host_toolchain != "//build/toolchain/cros:host") {
|
||||||
libs += [ "atomic" ]
|
libs += [ "atomic" ]
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user