diff options
author | наб <[email protected]> | 2021-05-15 11:53:14 +0200 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2021-06-03 13:17:55 -0700 |
commit | 739cfb965b00e9cc3155c4a0d6c24bd779b1a245 (patch) | |
tree | 16a02e6478c8e5fdff12455afb28dafc95bd0b3b /config | |
parent | e00aae4be2b5f126eb67ff3cdfd1b8e09e99fc0b (diff) |
libzfs: convert to -fvisibility=hidden
Also mark all printf-like funxions in libzfs_impl.h as printf-like
and add --no-show-locs to storeabi, in hopes diffs will make more sense
in future
This removes these symbols from libzfs:
D nfs_only
T SHA256Init
T SHA2Final
T SHA2Init
T SHA2Update
T SHA384Init
T SHA512Init
D share_all_proto
D smb_only
T zfs_is_shared_proto
W zpool_mount_datasets
W zpool_unmount_datasets
Reviewed-by: Brian Behlendorf <[email protected]>
Reviewed-by: Matthew Ahrens <[email protected]>
Reviewed-by: John Kennedy <[email protected]>
Signed-off-by: Ahelenia Ziemiańska <[email protected]>
Closes #12048
Diffstat (limited to 'config')
-rw-r--r-- | config/Abigail.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/Abigail.am b/config/Abigail.am index 599f61194..0a74741b4 100644 --- a/config/Abigail.am +++ b/config/Abigail.am @@ -25,5 +25,5 @@ checkabi: storeabi: cd .libs ; \ for lib in $(lib_LTLIBRARIES) ; do \ - abidw $${lib%.la}.so > ../$${lib%.la}.abi ; \ + abidw --no-show-locs $${lib%.la}.so > ../$${lib%.la}.abi ; \ done |