Skip to content

Commit 84863f8

Browse files
committed
fix: xcode 26.4 cpp version error
1 parent 1abf853 commit 84863f8

1 file changed

Lines changed: 11 additions & 0 deletions

File tree

example/ios/Podfile

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,5 +45,16 @@ target 'AccessExample' do
4545
:mac_catalyst_enabled => false,
4646
# :ccache_enabled => true
4747
)
48+
49+
# Fix for Xcode 26.4 build error
50+
installer.pods_project.targets.each do |target|
51+
if target.name == 'fmt'
52+
target.build_configurations.each do |config|
53+
config.build_settings['CLANG_CXX_LANGUAGE_STANDARD'] = 'c++17'
54+
end
55+
end
56+
end
57+
58+
4859
end
4960
end

0 commit comments

Comments
 (0)