-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
pkcs11js - build workaround #4
Comments
Thank you for sharing this workaround. Another way of doing this would be to create a section for |
Updated thread, I created a PR for this repo with my workaround for Android: JaneaSystems/nodejs-mobile#137 |
For this issue, a change to add This change was included with |
pkcs11js
iOS
The package has multiple throw exceptions, so for now the only available option is to allow CPP_EXCEPTIONS in the common.gypi
This is the line you should change:
'GCC_ENABLE_CPP_EXCEPTIONS': 'YES', # -fno-exceptions
Android
The package was not linking successfuly when paired with
grpc
. I needed to add a-fPIC
flag in the cflags forcommon.gypi
. Added'cflags': [ '-O3', '-fPIC']
in line 173.The text was updated successfully, but these errors were encountered: