Hello. I write kotlin library for sqlite. I want t...
# kotlin-native
c
Hello. I write kotlin library for sqlite. I want to build sqlite from source before build kotlin native part of library. How can I get access to konan gcc path? Current path for current build target.
I trid to use via gradle something like this:
Copy code
gccX86(Gcc) {
            target("mingwX86")
            path "${System.getProperty("user.home")}/.konan/dependencies/msys2-mingw-w64-i686-clang-llvm-lld-compiler_rt-8.0.1/bin"
        }
But I don't know what I must set for build for linux target on windows. And gradle plugin for C can't use konan gcc. Plugin said
- Could not determine GCC metadata: failed to execute gcc -dM -E -v -.
s
c
Thank you. But this both projects use already builded libaries. I want that sqlite build on each platform separated 😞
d