-
Notifications
You must be signed in to change notification settings - Fork 89
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
Build Errors when Upgrading to 5.15.2 or 5.15.1 but not on 5.15.0 #363
Comments
Hi @juliangsp Can you please tell me which version of Also to ask, would you mind sharing the exact exceptions you're receiving the 5.15.1 and 5.15.2 versions? |
Hi @mparadina The platform :ios, '13.0'
inhibit_all_warnings! we also use this code in the Podfile to configure the embedded Pod project added to the workspace: post_install do | installer | require 'fileutils'
# Disable Code Coverage for Pods projects
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['CLANG_ENABLE_CODE_COVERAGE'] = 'NO'
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '13.0' # Same version as iOS platform (see top of file)
config.build_settings["EXCLUDED_ARCHS[sdk=iphonesimulator*]"] = "arm64"
# Required for Veracode Static Analysis
if target.name == 'Pods-DW' && config.name == 'Debug'
config.build_settings['ENABLE_BITCODE'] = 'YES'
end
end
end
end As for the compile errors here's what I get only for
Note errors: and at the end:
Before building I make sure to delete |
Also I noticed from the error there's a reference to: which in that precompiled headers file |
Hi @mparadina, do you have any insights on this? I'm have a paid license key, should I report this through support too? Thank you. |
Step 1: Are you in the right place?
❌ N/A: For general technical questions, post a question on StackOverflow
with
BlinkID
andMicroblink
tags.__✅ For issues or feature requests related to the code in this repository
file a Github issue.
❌ N/A: For help troubleshooting your application that does not fall under one
of the above categories, reach out to the personalized
Microblink support.
Step 2: Describe your environment
Step 3: Describe the problem
After upgrading to 5.15.2 or 5.15.1 (via Cocoapods) I get build many errors on the project (uses Objetive-C and Swift v5 code), where as if I upgrade to 5.15.0 I get no errors.
Errors are multiple ('too many errors emitted, stopping now' from compiler) appearing on the autogenerated
XX-Swift.h
file withAmbiguous expansion of macro 'XYZ....'
where 'XYZ...' is 'SWIFT_RUNTIME_NAME', 'SWIFT_PROTOCOL', 'SWIFT_EXTENSION', 'SWIFT_PASTE', 'OBJC_DESIGNATED_INITIALIZER', etc.Step 4: Relevant code
N/A
The text was updated successfully, but these errors were encountered: