We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
$ nm -D bin/gost.so | grep -w T -c 154
99% из этих символов не нужны (скорее всего нужен только bind_engine) Есть такие методы решения этой проблемы: https://labjack.com/news/simple-cpp-symbol-visibility-demo Из них стандартным является ld version scripts.
bind_engine
The text was updated successfully, but these errors were encountered:
Проще всего, наверное, будет сделать глобально -fvisibility=hidden, а для нужных функций __attribute__((__visibility__("default"))).
-fvisibility=hidden
__attribute__((__visibility__("default")))
Sorry, something went wrong.
No branches or pull requests
99% из этих символов не нужны (скорее всего нужен только
bind_engine
)Есть такие методы решения этой проблемы: https://labjack.com/news/simple-cpp-symbol-visibility-demo
Из них стандартным является ld version scripts.
The text was updated successfully, but these errors were encountered: