Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,7 @@ x.y.z Release notes (yyyy-MM-dd)
* None.

### Fixed
* <How to hit and notice issue? what was the impact?> ([#????](https://github.com/realm/realm-swift/issues/????), since v?.?.?)
* None.
* Add support of arm64 in Carthage build ([#7154](https://github.com/realm/realm-cocoa/issues/7154)

<!-- ### Breaking Changes - ONLY INCLUDE FOR NEW MAJOR version -->

Expand Down
4 changes: 2 additions & 2 deletions Configuration/Base.xcconfig
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,9 @@ IPHONEOS_DEPLOYMENT_TARGET = 9.0;
WATCHOS_DEPLOYMENT_TARGET = 2.0;
TVOS_DEPLOYMENT_TARGET = 9.0;

// Disable building the arm64 simulators when using Carthage as it doesn't support them yet
// Disable building the arm64 simulators for some types of Carthage builds
REALM_ARM_ARCHS_YES = arm64 arm64e;
REALM_ARM_ARCHS = $(REALM_ARM_ARCHS_$(CARTHAGE))
REALM_ARM_ARCHS = $(REALM_ARM_ARCHS_$(REALM_CARTHAGE_ARM_DISABLED))

EXCLUDED_ARCHS[sdk=watchsimulator*] = $(REALM_ARM_ARCHS);
EXCLUDED_ARCHS[sdk=iphonesimulator*] = $(REALM_ARM_ARCHS);
Expand Down
1 change: 1 addition & 0 deletions Jenkinsfile.releasability
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,7 @@ def doBuild() {
export REALM_XCODE_VERSION=${carthageXcodeVersion}
. ./scripts/swift-version.sh
set_xcode_and_swift_versions
export REALM_CARTHAGE_ARM_DISABLED='YES'

# Carthage scans every xcodeproj in the directory looking for
# targets. This can be very slow and even spuriously time out, so
Expand Down
1 change: 1 addition & 0 deletions examples/installation/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -191,6 +191,7 @@ case "$COMMAND" in
;;

test-*-*-carthage)
export REALM_CARTHAGE_ARM_DISABLED='YES'
xctest "$PLATFORM" "$LANGUAGE" CarthageExample
;;

Expand Down