Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Latest Xcode 26.4's newer clang rejects the
fmtpod'sFMT_COMPILE_STRINGpath with"call to consteval function 'fmt::basic_format_string<...>' is not a constant expression"This breaks
pod install→xcodebuildThis PR works around that by building the
fmtpod against C++17 where theconstevalconstant-evaluation is more lenient, unblocking local iOS builds without touching React Native or Sentry SDK versions.Changes
ios/Podfile: Added apost_installblock that setsCLANG_CXX_LANGUAGE_STANDARD = c++17on thefmtpod's build configurations.ios/Podfile.lock: UpdatedPODFILE CHECKSUM(automatic)ios/sentry_react_native.xcodeproj/project.pbxproj: CocoaPods integration churn written bypod installunder CocoaPods 1.16.2 — drops redundant emptyinputPaths/outputPathsentries on the[CP] Embed Pods Frameworksand[CP] Copy Pods Resourcesscript phases, and clears a staleCCoverride that pointed at the ccache-clang wrapper. No behavioral change beyond making the committed project match what CocoaPods generates on current toolchains.Test plan
cd ios && pod installcompletes cleanly on Xcode 26.4npm run build-dev-iosbuilds and launches on the iOS simulatornpm run build-dev-android) unaffected