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
While experimenting with cross compilation of a C++ project to webassembly using 64-bit memory (-sMEMORY64=1), I noticed that emcmake has no regard for -sMEMORY64 setting and hard codes CMAKE_SIZEOF_VOIDP to 4 bytes. This causes a problem for a lot of code which looks at that cmake variable to enable/disable 64-bit code paths.
The text was updated successfully, but these errors were encountered:
While experimenting with cross compilation of a C++ project to webassembly using 64-bit memory (-sMEMORY64=1), I noticed that emcmake has no regard for
-sMEMORY64
setting and hard codesCMAKE_SIZEOF_VOIDP
to 4 bytes. This causes a problem for a lot of code which looks at that cmake variable to enable/disable 64-bit code paths.The text was updated successfully, but these errors were encountered: