Skip to content

Commit

Permalink
Allow user to use Xcode 13 (#5531)
Browse files Browse the repository at this point in the history
* Allow user to use Xcode 13
  • Loading branch information
kneth authored Mar 10, 2023
1 parent 89e396c commit 8aa0afe
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
* None

### Fixed
* Suppress omitting `objcMsgsend` stubs to ensure backward compatibility with Xcode 13. It can be observed as `Undefined symbols for architecture arm64: "_objc_msgSend$allBundles", referenced from: realm::copy_bundled_realm_files() in librealm-js-ios.a(platform.o)` when using a React Native app for iOS. ([#5511](https://github.com/realm/realm-js/issues/5511), since v11.5.1)
* It is not allowed to specify `deleteRealmIfMigrationIsNeeded` and sync. This can lead to error messages like `Schema validation failed due to the following errors`. ([#5548](https://github.com/realm/realm-js/issues/5548), v10.12.0)
* Installation will no longer hang when using Node 19. ([#5136](https://github.com/realm/realm-js/issues/5136), since v10.13.0)
* Fixed enums which was accidentally exported on the `Realm` namespace without a backing implementation. ([#5493](https://github.com/realm/realm-js/pull/5493), since v11.0.0)
Expand Down
3 changes: 3 additions & 0 deletions src/ios/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# https://developer.apple.com/forums/thread/716965
add_cxx_flag_if_supported(-fno-objc-msgsend-selector-stubs)

add_library(realm-js-ios STATIC
platform.mm
)
Expand Down

0 comments on commit 8aa0afe

Please sign in to comment.