Skip to content

Commit

Permalink
Disable iosSimulatorArm64 temporarily
Browse files Browse the repository at this point in the history
  • Loading branch information
05nelsonm committed Oct 2, 2023
1 parent 77c8513 commit 77eb39c
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
9 changes: 8 additions & 1 deletion build-logic/src/main/kotlin/-KmpConfigurationExtension.kt
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,14 @@ fun KmpConfigurationExtension.configureShared(

iosArm64()
iosX64()
iosSimulatorArm64()

// https://youtrack.jetbrains.com/issue/KT-60230
// Need to figure out path forward considering
// Xcode versions and kotlin 1.9.10.
// For example, 1.9.10 + Xcode 14 will throw errors
// when linking b/c of version mismatch with what
// 1.9.10's min version is set to (14.0).
// iosSimulatorArm64()

// Just use JVM. Not dealing with native desktop
// b/c it's a shit-show (especially Linux)
Expand Down
3 changes: 1 addition & 2 deletions library/driver/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -169,8 +169,7 @@ fun CompileToBitcodeExtension.createSqlite3mc() {
xcode.iphoneosSdk,
)
IOS_SIMULATOR_ARM64 -> listOf(
// https://youtrack.jetbrains.com/issue/KT-60230
// "-mios-simulator-version-min=14.0",
"-mios-simulator-version-min=9.0",
"-isysroot",
xcode.iphonesimulatorSdk,
)
Expand Down

0 comments on commit 77eb39c

Please sign in to comment.