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 for common.gypi. Added 'cflags': [ '-O3', '-fPIC'] in line 173.
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-exceptionsAndroid
The package was not linking successfuly when paired with
grpc. I needed to add a-fPICflag in the cflags forcommon.gypi. Added'cflags': [ '-O3', '-fPIC']in line 173.