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
For the runtime support for -fvisibility=hidden, we just need to mark the runtime functions that are called across translation units as having default (i.e. exported) visibility with __attribute__((visibility("default"))).
The text was updated successfully, but these errors were encountered:
…visibility("default")))`
* Fixes#442.
Making the visibility explicit for these allows projects to be compiled with `-fvisibility=hidden`,
which sets the default (not `default`) to `hidden`.
…visibility("default")))`
* Fixes#442.
Making the visibility explicit for these allows projects to be compiled with `-fvisibility=hidden`,
which sets the default (not `default`) to `hidden`.
…visibility("default")))`
* Fixes#442.
Making the visibility explicit for these allows projects to be compiled with `-fvisibility=hidden`,
which sets the default (not `default`) to `hidden`.
-fvisibility=hidden
#435.For the runtime support for
-fvisibility=hidden
, we just need to mark the runtime functions that are called across translation units as having default (i.e. exported) visibility with__attribute__((visibility("default")))
.The text was updated successfully, but these errors were encountered: