Skip to content

Commit

Permalink
Workaround for ARM64 GCC preprocessors
Browse files Browse the repository at this point in the history
  • Loading branch information
siepra committed Oct 9, 2023
1 parent 97c8c7b commit a63301f
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions packages/mobile/ios/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,11 @@ target 'Quiet' do

post_install do |installer|
react_native_post_install(installer)

installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['GCC_PREPROCESSOR_DEFINITIONS'] ||= ['$(inherited)', '_LIBCPP_ENABLE_CXX17_REMOVED_UNARY_BINARY_FUNCTION']
end
end
end
end

0 comments on commit a63301f

Please sign in to comment.