Hello! Is there a way to see whitch clang commands...
# kotlin-native
m
Hello! Is there a way to see whitch clang commands are executed during build of kotlin/native target? I've tried the debug option while building but I only see high-level stuff 🤔
a
look at the files in
~/.konan/$dist/bin/
run_konan
is invoked to run the various native compilation tools, and most of the args are predefined. More details are here: https://github.com/JetBrains/kotlin/blob/master/kotlin-native/HACKING.md#running-clang-the-same-way-kotlinnative-compiler-does
👀 1