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/50d16726 Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/50d16726 Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/50d16726 Branch: refs/heads/HBASE-14850 Commit: 50d16726ccf5b93a318417ab5b69d083c6f6ca8d Parents: f74379e Author: Elliott Clark <ecl...@apache.org> Authored: Mon May 2 11:41:02 2016 -0700 Committer: Elliott Clark <ecl...@apache.org> Committed: Mon Jul 11 16:47:26 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/50d16726/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") \