hide asm functions on apple platforms

This commit is contained in:
Nidhi Jaju 2023-06-26 00:07:30 +00:00
parent e2cd353473
commit b1a30e2b4a

View File

@ -68,6 +68,8 @@
/* Mark the internal assembly functions as hidden */
#ifdef __ELF__
# define ZSTD_HIDE_ASM_FUNCTION(func) .hidden func
#elif defined(__APPLE__)
# define ZSTD_HIDE_ASM_FUNCTION(func) .private_extern func
#else
# define ZSTD_HIDE_ASM_FUNCTION(func)
#endif