diff options
author | spang <spang@chromium.org> | 2015-02-05 15:09:31 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-02-05 23:10:28 +0000 |
commit | e1393cf52aa9e7b8cbcf0a4776030253e8de2583 (patch) | |
tree | cec88478839047e0b0ca0181a50bf81a1dc66873 /third_party/libxml | |
parent | 3fb85eb7a52c7c26093acef339432fee3b3eec29 (diff) | |
download | chromium_src-e1393cf52aa9e7b8cbcf0a4776030253e8de2583.zip chromium_src-e1393cf52aa9e7b8cbcf0a4776030253e8de2583.tar.gz chromium_src-e1393cf52aa9e7b8cbcf0a4776030253e8de2583.tar.bz2 |
libxml2: Add missing dependency on libm
The library uses functions from "math.h". This fixes the embedded build
with -Wl,-z,defs.
BUG=445627
TEST=linux_ecs_ozone tryjob
TBR=cpu
Review URL: https://codereview.chromium.org/901273002
Cr-Commit-Position: refs/heads/master@{#314906}
Diffstat (limited to 'third_party/libxml')
-rw-r--r-- | third_party/libxml/libxml.gyp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/third_party/libxml/libxml.gyp b/third_party/libxml/libxml.gyp index dcc75b9..1decbe9 100644 --- a/third_party/libxml/libxml.gyp +++ b/third_party/libxml/libxml.gyp @@ -237,6 +237,7 @@ 'libraries': [ # We need dl for dlopen() and friends. '-ldl', + '-lm', ], }, }], |