From e1393cf52aa9e7b8cbcf0a4776030253e8de2583 Mon Sep 17 00:00:00 2001 From: spang Date: Thu, 5 Feb 2015 15:09:31 -0800 Subject: [PATCH] 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} --- third_party/libxml/libxml.gyp | 1 + 1 file changed, 1 insertion(+) diff --git a/third_party/libxml/libxml.gyp b/third_party/libxml/libxml.gyp index dcc75b90b81b..1decbe95ada6 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', ], }, }], -- 2.11.4.GIT