XCode 7 dyld: Symbol not found after setting ENABLE_BITCODE=NO
Date : March 29 2020, 07:55 AM
it fixes the issue What needed to happen was I needed to clean and delete derived data. After I did that I was able to run my application on my device.
|
ld: -no_pie and -bitcode_bundle (Xcode setting ENABLE_BITCODE=YES) cannot be used together error
Date : March 29 2020, 07:55 AM
Hope this helps The issue was due to the Generate position-dependent code configuration to YES in the PROJECT settings, which apparently overrode the configuration in the targets.
|
ld: -bundle and -bitcode_bundle (Xcode setting ENABLE_BITCODE=YES) cannot be used together
Tag : xcode , By : joshboles
Date : March 29 2020, 07:55 AM
I hope this helps . I had erroneously set my DEBUG and TEST configurations to build with Bitcode, and this was what caused the above error. Enabling Bitcode only for RELEASE fixed it:
|
iOS -weak_library and -bitcode_bundle (Xcode setting ENABLE_BITCODE=YES) cannot be used together
Date : March 29 2020, 07:55 AM
wish help you to fix your issue Reason of Problem : While installing cocoapod dependency that were compiled with ENABLED_BITCODE = YES and thus it override this settings that create a problem. To solve this , we had to add these lines on our cocoapod so that ENABLED_BITCODEsetting is not overriden during cocoapod dependency installation post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['ENABLE_BITCODE'] = 'NO'
end
end
end
|
Xcode 7 and ENABLE_BITCODE=YES setting does not work
Date : March 29 2020, 07:55 AM
|