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
The src/init.c file currently has R_useDynamicSymbols(info, TRUE), which means we are still using dynamic symbol lookup. There is a performance benefit to using more restrictive symbol lookup, as well as a safety component (entry points are more explicit, so can't be found accidentally).
The
src/init.c
file currently hasR_useDynamicSymbols(info, TRUE)
, which means we are still using dynamic symbol lookup. There is a performance benefit to using more restrictive symbol lookup, as well as a safety component (entry points are more explicit, so can't be found accidentally).See the Registering native routines section of WRE.
The text was updated successfully, but these errors were encountered: