Hey guys, following this tutorial <https://kotlinl...
# kotlin-native
p
Hey guys, following this tutorial https://kotlinlang.org/docs/native-dynamic-libraries.html , how can I generate symbol file for windows dynamic library? I believe I need such file to symbolicate crash in the future. I tried this:
Copy code
kotlin {
    targets.withType<org.jetbrains.kotlin.gradle.plugin.mpp.KotlinNativeTarget> {
        binaries.all {
            freeCompilerArgs += "-Xadd-light-debug=enable"
        }
    }
}
from this tutorial https://kotlinlang.org/docs/native-ios-symbolication.html#producing-dsym-for-release-kotlin-binaries , but it doesn’t generate any new file.