Verbose logging of versions if KLIB compiler version mismatches
This commit is contained in:
committed by
alexander-gorshenev
parent
3835f86fde
commit
f94a945d1e
@@ -210,7 +210,7 @@ internal fun SearchPathResolverWithTarget.libraryMatch(candidate: KonanLibraryIm
|
|||||||
if (candidateCompilerVersion == null ||
|
if (candidateCompilerVersion == null ||
|
||||||
knownCompilerVersions != null &&
|
knownCompilerVersions != null &&
|
||||||
!knownCompilerVersions!!.contains(candidateCompilerVersion)) {
|
!knownCompilerVersions!!.contains(candidateCompilerVersion)) {
|
||||||
logger("skipping $candidatePath. The compiler versions don't match. Expected '${knownCompilerVersions}', found '${candidateCompilerVersion}'")
|
logger("skipping $candidatePath. The compiler versions don't match. Expected '${knownCompilerVersions?.map { it.toString(true, true) }}', found '${candidateCompilerVersion?.toString(true, true)}'")
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user