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
After adopting InterposeKit in my app, uploading a build to Apple fails when bitcode is enabled with the following error:
ITMS-90562: Invalid Bundle - The app submission can not be successfully recompiled from bitcode due to missing symbols during linking. You can try to reproduce and diagnose such issues locally by following the instructions from: https://developer.apple.com/library/archive/technotes/tn2432/_index.html
Uploading with bitcode disabled is fine. After reading the linked page I suspect it has something to do with the inline assembly in ITKSuperBuilder.m. I removed InterposeKit from my app and uploaded with bitcode without error to confirm that it was indeed InerposeKit causing the issue. Please challenge my assumption if you think something else is the issue.
Do you think this can be fixed? At least I think it would make sense to document this limitation in the readme.
The text was updated successfully, but these errors were encountered:
For reference this is what the error is when linking
Undefined symbols for architecture arm64:
"_ITKReturnThreadSuper", referenced from:
__hidden#19025_ in 091.o
ld: symbol(s) not found for architecture arm64
Exited with 1
After adopting InterposeKit in my app, uploading a build to Apple fails when bitcode is enabled with the following error:
Uploading with bitcode disabled is fine. After reading the linked page I suspect it has something to do with the inline assembly in
ITKSuperBuilder.m
. I removed InterposeKit from my app and uploaded with bitcode without error to confirm that it was indeed InerposeKit causing the issue. Please challenge my assumption if you think something else is the issue.Do you think this can be fixed? At least I think it would make sense to document this limitation in the readme.
The text was updated successfully, but these errors were encountered: