This is an automated email from the ASF dual-hosted git repository. alexey pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/kudu.git
commit 5d6dcfd2470fc9e3144e9fe593063c90cd82bef3 Author: Zoltan Martonka <[email protected]> AuthorDate: Wed Oct 18 12:55:21 2023 +0000 [build] Make uncompress symbols local in exported libkudu_client.so in redhat 8.8 and ubuntu 22.04 graviton instances the uncompress and uncompress2 symbols form libz get to libkudu_client.so. They shoud be made local too. Adding them to symbol.map Change-Id: I5033eef9dee6711f302d877cfb81a066b65f0319 Reviewed-on: http://gerrit.cloudera.org:8080/20590 Tested-by: Alexey Serbin <[email protected]> Reviewed-by: Alexey Serbin <[email protected]> --- src/kudu/client/symbols.map | 1 + 1 file changed, 1 insertion(+) diff --git a/src/kudu/client/symbols.map b/src/kudu/client/symbols.map index 9c25d64a5..d10dcbf56 100644 --- a/src/kudu/client/symbols.map +++ b/src/kudu/client/symbols.map @@ -17,6 +17,7 @@ inflate*; zError; zlib*; + uncompress*; # devtoolset __cxa_throw_bad_array*;
