Skip to content

Commit

Permalink
[LOCAL] Make 0.69 compatible with Xcode 15 (thanks to @AlexanderEggers
Browse files Browse the repository at this point in the history
…for the commit in main)
  • Loading branch information
Riccardo Cipolleschi committed Jun 8, 2023
1 parent 4f52bbc commit 37e8df1
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions scripts/react_native_pods.rb
Original file line number Diff line number Diff line change
Expand Up @@ -317,6 +317,7 @@ def react_native_post_install(installer, react_native_path = "../node_modules/re
cpp_flags = NEW_ARCH_OTHER_CPLUSPLUSFLAGS
end
modify_flags_for_new_architecture(installer, cpp_flags)
apply_xcode_15_patch(installer)

set_node_modules_user_settings(installer, react_native_path)
end
Expand Down Expand Up @@ -728,6 +729,19 @@ def __apply_Xcode_12_5_M1_post_install_workaround(installer)
`sed -i -e $'s/ && (__IPHONE_OS_VERSION_MIN_REQUIRED < __IPHONE_10_0)//' #{time_header}`
end

# Fix to build react native on Xcode 15 beta 1
def apply_xcode_15_patch(installer)
installer.target_installation_results.pod_target_installation_results
.each do |pod_name, target_installation_result|
target_installation_result.native_target.build_configurations.each do |config|
# unary_function and binary_function are no longer provided in C++17 and newer standard modes as part of Xcode 15. They can be re-enabled with setting _LIBCPP_ENABLE_CXX17_REMOVED_UNARY_BINARY_FUNCTION
# Ref: https://developer.apple.com/documentation/xcode-release-notes/xcode-15-release-notes#Deprecations
config.build_settings['GCC_PREPROCESSOR_DEFINITIONS'] ||= '$(inherited) '
config.build_settings['GCC_PREPROCESSOR_DEFINITIONS'] << '"_LIBCPP_ENABLE_CXX17_REMOVED_UNARY_BINARY_FUNCTION" '
end
end
end

# Monkeypatch of `Pod::Lockfile` to ensure automatic update of dependencies integrated with a local podspec when their version changed.
# This is necessary because local podspec dependencies must be otherwise manually updated.
module LocalPodspecPatch
Expand Down

0 comments on commit 37e8df1

Please sign in to comment.