[K/N] Fix FrameworkTest in case of simulator target

As of Xcode 13.1 Swift 5.5 passes wrong libclang_rt to simulator targets
(similar to ours KT-47333). To workaround this problem, we explicitly
provide the correct one.
This commit is contained in:
Sergey Bogolepov
2021-11-29 19:17:06 +03:00
committed by Space
parent 3ef97511f6
commit 10b48296e8
2 changed files with 11 additions and 2 deletions
@@ -94,7 +94,7 @@ abstract class LinkerFlags(val configurables: Configurables) {
return libraries
}
protected open fun provideCompilerRtLibrary(libraryName: String, isDynamic: Boolean = false): String? {
open fun provideCompilerRtLibrary(libraryName: String, isDynamic: Boolean = false): String? {
System.err.println("Can't provide $libraryName.")
return null
}