hw-1

How to fix “Bus error 10” after update to Xcode 10.2

How to fix “Bus error 10” after update to Xcode 10.2

1
2
3
4
5
6
7
8
9
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
if target.name == 'Cache'
config.build_settings['SWIFT_OPTIMIZATION_LEVEL'] = '-Onone'
end
end
end
end