You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[K/N] Fixed a data race during monolithic caches creation
For per-file caches the data race is still there, but since per-file caches are
only used for incremental compilation, it's ok to leave it as is for now (we cope
with the data race by using a separate folder for each Gradle task).
#KT-65634 Fixed
Copy file name to clipboardExpand all lines: kotlin-native/backend.native/compiler/ir/backend.native/src/org/jetbrains/kotlin/backend/konan/CacheStorage.kt
+11-7
Original file line number
Diff line number
Diff line change
@@ -14,13 +14,17 @@ internal class CacheStorage(private val generationState: NativeGenerationState)
Copy file name to clipboardExpand all lines: kotlin-native/backend.native/compiler/ir/backend.native/src/org/jetbrains/kotlin/backend/konan/driver/phases/CacheBuilding.kt
+2-2
Original file line number
Diff line number
Diff line change
@@ -44,7 +44,7 @@ internal val SaveAdditionalCacheInfoPhase = createSimpleNamedCompilerPhase<Nativ
0 commit comments