Closed kkysen closed 1 month ago
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"))).
-fvisibility=hidden
__attribute__((visibility("default")))
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")))
.