Márton Marczell

Results 26 comments of Márton Marczell

@MatthieuMv > The issue with this approach is that it breaks typescript generation because the vector is now recognised as an 'any' type. It would be very great to expose...

@ndebartha it might not solve your entire problem, but the app store requires universal binaries, so a x64 only upload will not be accepted AFAIK.

@ransome1 BTW I use my own custom entitlements files like this: distribution.entitlements ``` com.apple.security.app-sandbox com.apple.security.files.user-selected.read-write com.apple.security.files.bookmarks.app-scope com.apple.security.network.client com.apple.security.cs.allow-jit com.apple.security.application-groups com.my-company ``` child.entitlements ``` com.apple.security.app-sandbox com.apple.security.cs.allow-jit com.apple.security.inherit ``` forge.config.js ``` osxSign:...

Hi @eliabsisay, yes the recommended workaround worked.

@bidetofevil can you provide some context on why this ended up "not planned"? I can see there was a PR resolving this in the way you mentioned (no disk reads)...

#2484 was an AI-authored PR but @fractalwrench was not satisfied so it wasn't merged.

For posterity, an easy workaround is to put this in your CMakeLists.txt: ``` if (DEFINED NODE_JS_EXECUTABLE) set(CMAKE_CROSSCOMPILING_EMULATOR "${NODE_JS_EXECUTABLE};--experimental-wasm-threads") endif()

Same here. Commenting so that the issue does not get autoclosed...