You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[libc] Set default visibility to 'hidden' and make entrypoints default
Summary:
See for visibility: https://llvm.org/docs/LangRef.html#visibility-styles
Currently we build everything with default visibility, meaning that all
internal symbols are preemptable and visible to any `.so` they're linked
into. What we want is hidden visibility for all the internal parts, and
default visibility for the API functions / exposed globals.
This patch is based on #97109.
0 commit comments