HBASE-15748 Don't link in static libunwind.
Project: http://git-wip-us.apache.org/repos/asf/hbase/repo Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/39154784 Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/39154784 Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/39154784 Branch: refs/heads/HBASE-14850 Commit: 39154784f2eafaf7dfe07cad5a1f321c9fa3b7e2 Parents: a7225e4 Author: Elliott Clark <[email protected]> Authored: Mon May 2 11:41:02 2016 -0700 Committer: Elliott Clark <[email protected]> Committed: Wed May 18 15:48:52 2016 -0700 ---------------------------------------------------------------------- hbase-native-client/third-party/BUCK | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hbase/blob/39154784/hbase-native-client/third-party/BUCK ---------------------------------------------------------------------- diff --git a/hbase-native-client/third-party/BUCK b/hbase-native-client/third-party/BUCK index 4327530..6561b2a 100644 --- a/hbase-native-client/third-party/BUCK +++ b/hbase-native-client/third-party/BUCK @@ -51,7 +51,7 @@ def add_dynamic_libs(names=[]): return rules -system_libs = ["unwind", "lzma", "event", ] +system_libs = ["lzma", "event", ] local_libs = [ "double-conversion", "boost_regex", @@ -65,7 +65,7 @@ local_libs = [ "glog", "protobuf", ] -dynamic_libs = ["stdc++", "pthread", "ssl", "crypto", "dl", "atomic", ] +dynamic_libs = ["stdc++", "pthread", "ssl", "crypto", "dl", "atomic", "unwind"] dynamic_rules = add_dynamic_libs(dynamic_libs) tp_dep_rules = add_system_libs(system_libs,) \ + add_system_libs(local_libs, lib_dir = "/usr/local/lib") \
