Closed polanfong closed 3 weeks ago
I've had the same issues with Xcode 16.0 and found the solution here
Change the bottom of the pod file to: Podfile_copy.txt
Run pod install --no-repo-update
and run the benchmark script again:
@ilsinszkibal, thank you, I've updated the project
Thank you!
I added BoringSSL-GRPC
part into post_install, then build is succeeded in react native
installer.pods_project.targets.each do |t|
if t.name == 'BoringSSL-GRPC'
t.source_build_phase.files.each do |file|
if file.settings && file.settings['COMPILER_FLAGS']
flags = file.settings['COMPILER_FLAGS'].split
flags.reject! { |flag| flag == '-GCC_WARN_INHIBIT_ALL_WARNINGS' }
file.settings['COMPILER_FLAGS'] = flags.join(' ')
end
end
end
end
System Version: 14.4 Xcode 15.4 Hardware Overview Model Name: MacBook Pro Model Identifier: Mac15,7 Total Number of Cores: 12 (6 performance and 6 efficiency) Memory: 36 GB
Build results in a few of these error messages:
Summary of build failures:
I've tried the solution from https://stackoverflow.com/questions/78608693/boringssl-grpc-unsupported-option-g-for-target-arm64-apple-ios15-0 but that didn't resolve the issue.