[K/N] Use smaller mingw-w64-x86_64 toolchain

We don't need LLVM components there anymore because they live in
a separate dependency now.
This commit is contained in:
Sergey Bogolepov
2021-08-09 20:02:49 +07:00
committed by Space
parent caa44e413d
commit 6953d29922
2 changed files with 9 additions and 9 deletions
@@ -41,7 +41,7 @@ kotlin {
presets["mingwX86"] -> kotlinNativeDataPath.resolve(
"dependencies/msys2-mingw-w64-i686-clang-llvm-lld-compiler_rt-8.0.1/bin")
presets["mingwX64"] -> kotlinNativeDataPath.resolve(
"dependencies/msys2-mingw-w64-x86_64-clang-llvm-lld-compiler_rt-8.0.1/bin")
"dependencies/msys2-mingw-w64-x86_64-1/bin")
else -> throw GradleException("Unsupported presets")
}.toString()
inputs.file(inFile)