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
Emscripten option EMULATE_FUNCTION_POINTER_CASTS is currently required to compile as Postgres makes usage of function pointer casts. However this is a potential performance penalty. We should investigate a route to removing the need for this option.
Use EMULATE_FUNCTION_POINTER_CASTS. When you build with -sEMULATE_FUNCTION_POINTER_CASTS, Emscripten emits code to emulate function pointer casts at runtime, adding extra arguments/dropping them/changing their type/adding or dropping a return type/etc. This can add significant runtime overhead, so it is not recommended, but is be worth trying.
The text was updated successfully, but these errors were encountered:
Emscripten option
EMULATE_FUNCTION_POINTER_CASTS
is currently required to compile as Postgres makes usage of function pointer casts. However this is a potential performance penalty. We should investigate a route to removing the need for this option.https://emscripten.org/docs/porting/guidelines/function_pointer_issues.html
The text was updated successfully, but these errors were encountered: