Skip to content
This repository has been archived by the owner on Aug 10, 2021. It is now read-only.

Commit

Permalink
Verbose logging of versions if KLIB compiler version mismatches
Browse files Browse the repository at this point in the history
  • Loading branch information
ddolovov committed Sep 14, 2018
1 parent 11a4332 commit 2cb6e8e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ internal fun SearchPathResolverWithTarget.libraryMatch(candidate: KonanLibraryIm
if (candidateCompilerVersion == null ||
knownCompilerVersions != null &&
!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
}

Expand Down

0 comments on commit 2cb6e8e

Please sign in to comment.