summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorearthdok@chromium.org <earthdok@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-04-22 16:35:48 +0000
committerearthdok@chromium.org <earthdok@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-04-22 16:35:48 +0000
commit5ddc607dacb4d33996eb9f4aaf1804cbb8177f0c (patch)
tree36ed53f29e05495098d017f4b81a900c88fc8802
parent9cbb80d7e8b27d9f1fddb22afacf5fadf48f15c9 (diff)
downloadchromium_src-5ddc607dacb4d33996eb9f4aaf1804cbb8177f0c.zip
chromium_src-5ddc607dacb4d33996eb9f4aaf1804cbb8177f0c.tar.gz
chromium_src-5ddc607dacb4d33996eb9f4aaf1804cbb8177f0c.tar.bz2
Add missing library dependencies to libc++abi.so.
Fixes a link error in mksnapshot. Previously, only libc++.so had those dependencies - but libc++abi.so needs them as well. Usually this isn't a problem because executables tend to depend on both libc++ and libc++abi, but in at least one case the libc++.so dependency was dropped due to -Wl,--as-needed, leaving libc++abi.so with unresolved symbols. BUG=365612 TBR=glider@chromium.org TEST=compile NOTRY=true Review URL: https://codereview.chromium.org/246763004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@265278 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r--third_party/libc++abi/libc++abi.gyp2
1 files changed, 2 insertions, 0 deletions
diff --git a/third_party/libc++abi/libc++abi.gyp b/third_party/libc++abi/libc++abi.gyp
index 64c114b..3d97735 100644
--- a/third_party/libc++abi/libc++abi.gyp
+++ b/third_party/libc++abi/libc++abi.gyp
@@ -86,6 +86,8 @@
],
'libraries': [
'-lrt',
+ '-lgcc_s',
+ '-lpthread',
'-lc',
]
},