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
To avoid name collisions when linking projects with other versions of dict, sds, etc. we shouldn't expose these functions in the .so file.
We can compile with -fvisibility=hidden and explicitly add __attribute__((visibility("default"))) to the exported functions. It's explained in https://stackoverflow.com/a/4466766/975856.
To avoid name collisions when linking projects with other versions of dict, sds, etc. we shouldn't expose these functions in the .so file.
We can compile with
-fvisibility=hidden
and explicitly add__attribute__((visibility("default")))
to the exported functions. It's explained in https://stackoverflow.com/a/4466766/975856.(Related to #44.)
The text was updated successfully, but these errors were encountered: