-
Notifications
You must be signed in to change notification settings - Fork 2.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Internal assembly functions are exported #2990
Comments
hjl-tools
added a commit
to hjl-tools/zstd
that referenced
this issue
Jan 11, 2022
Hide x86-64 internal assembly functions. Before $ nm -D lib/libzstd.so.1 00000000000c23c0 T _HUF_decompress4X1_usingDTable_internal_bmi2_asm_loop 00000000000c23c0 T HUF_decompress4X1_usingDTable_internal_bmi2_asm_loop 00000000000c283d T _HUF_decompress4X2_usingDTable_internal_bmi2_asm_loop 00000000000c283d T HUF_decompress4X2_usingDTable_internal_bmi2_asm_loop $ After $ nm -D lib/libzstd.so.1 $ This fixes issue facebook#2990.
hjl-tools
added a commit
to hjl-tools/zstd
that referenced
this issue
Jan 11, 2022
Hide x86-64 internal assembly functions. Before $ nm -D lib/libzstd.so.1 00000000000c23c0 T _HUF_decompress4X1_usingDTable_internal_bmi2_asm_loop 00000000000c23c0 T HUF_decompress4X1_usingDTable_internal_bmi2_asm_loop 00000000000c283d T _HUF_decompress4X2_usingDTable_internal_bmi2_asm_loop 00000000000c283d T HUF_decompress4X2_usingDTable_internal_bmi2_asm_loop $ After $ nm -D lib/libzstd.so.1 $ This fixes issue facebook#2990.
hjl-tools
added a commit
to hjl-tools/zstd
that referenced
this issue
Jan 11, 2022
Hide x86-64 internal assembly functions. Before $ nm -D lib/libzstd.so.1 | grep usingDTable_internal_bmi2_asm_loop 00000000000c23c0 T _HUF_decompress4X1_usingDTable_internal_bmi2_asm_loop 00000000000c23c0 T HUF_decompress4X1_usingDTable_internal_bmi2_asm_loop 00000000000c283d T _HUF_decompress4X2_usingDTable_internal_bmi2_asm_loop 00000000000c283d T HUF_decompress4X2_usingDTable_internal_bmi2_asm_loop $ After $ nm -D lib/libzstd.so.1 | grep usingDTable_internal_bmi2_asm_loop $ This fixes issue facebook#2990.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
On Linux/x86-64, Internal assembly functions are exported:
These are internal functions and shouldn't be exported.
The text was updated successfully, but these errors were encountered: