diff options
author | Michal Klocek <michal.klocek@qt.io> | 2017-01-31 17:21:13 +0100 |
---|---|---|
committer | Allan Sandfeld Jensen <allan.jensen@qt.io> | 2017-05-03 16:01:28 +0200 |
commit | f3a2325c5e416f37e57882ae19b720693385c7bb (patch) | |
tree | 8e82f0c4c7e6f7108591c17b044a5f466d862e49 | |
parent | 08a78769bce51cb47876af58daaa243328840093 (diff) | |
download | qtwebengine-chromium-f3a2325c5e416f37e57882ae19b720693385c7bb.tar.gz |
Remove linking with libatomic
Rhel machines on ci do not have it.
Change-Id: I4cbb6d9d0826a23f8065a9eebba7ba27856e44d4
Reviewed-by: Michael BrĂ¼ning <michael.bruning@qt.io>
-rw-r--r-- | chromium/base/BUILD.gn | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chromium/base/BUILD.gn b/chromium/base/BUILD.gn index 21c303dcb10..d70985be06c 100644 --- a/chromium/base/BUILD.gn +++ b/chromium/base/BUILD.gn @@ -1127,7 +1127,7 @@ component("base") { ] # Needed for <atomic> if using newer C++ library than sysroot - if (!use_sysroot && (is_android || (is_linux && !is_chromecast))) { + if (!use_sysroot && (is_android || (is_linux && !is_chromecast && !use_qt))) { libs = [ "atomic" ] } |