-
Notifications
You must be signed in to change notification settings - Fork 982
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
Distribute j2objc libraries with Bitcode enabled (only jre libs were built with Bitcode) #651
Comments
All libraries are built with the -fembed-bitcode-marker flag. To verify this, be sure and specify otool's -arch flag (only the armv7 and arm64 should set this flag): $ otool -l libguava.a -arch armv7 | grep __LLVM | head -1 I don't know why otool will find the segment in some fat libraries, like libjre_emul.a, but not others. |
Actually if you try to Build & Archive an app that uses
Redistributable binaries should be built with _-fembed-bitcode_, not -fembed-bitcode-marker flag. The difference between these two flags is explained well here: |
Has anyone successfully rebuilt j2objc with -fembed-bitcode? Only the jre_emul/environment.mk and make/fat_lib_macros.mk files need to be updated. |
Successfully rebuild just now, my environment is:
The resulting |
I have also successfully built, archived, and validated an app of mine with the latest |
lukhnos, do you mean what the file at path |
It appears that Bitcode support in the j2objc libraries is limited to jre_emul and jre_emul_core and not supported in other libraries. Running the standard Bitcode marker test:
$ otool -l libjre_emul.a | grep __LLVM | head -1
segname __LLVM
$ otool -l libjre_emul_core.a | grep __LLVM | head -1
segname __LLVM
All the other libraries come up negative. This request is to add support to all those libraries to enable support of watchOS apps. I don't believe it's needed for junit or mockito but is necessary for the others.
The text was updated successfully, but these errors were encountered: