-
Notifications
You must be signed in to change notification settings - Fork 64
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
x86_64 architecture is missing from built frameworks #65
Comments
Do you know if the pod you added in your podfile actually supports that architecture? could you upload an example Podfile you used? |
Sure, this is my Podfile: platform :ios, '9.0'
plugin 'cocoapods-rome', {
:pre_compile => Proc.new { |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['SWIFT_VERSION'] = '4.1'
end
end
installer.pods_project.save
},
dsym: false
}
target 'caesar' do
pod 'Alamofire'
end After that I run |
I think it has something to do with the |
missing simulator architecture. Tested on Xcode 12 |
I ran into this today too. It looks like #89 will fix it. |
I tried to build with a framework with Rome, but for some reason it does not build for x86_64 architecture in Debug. In Release configuration even i386 is missing.
I tried with CocoaPods 1.4 and CocoaPods 1.5 and same result. I use Xcode 9.3 so it might be related to that.
The text was updated successfully, but these errors were encountered: