Can I get a macOS .framework that is optimized and...
# kotlin-native
m
Can I get a macOS .framework that is optimized and contains debug information ? Looks like I only have the choice between (
DEBUG=non-optimized with debug info
or
RELEASE=optimized without debug info
). I feel like having dSYM could still help symbolicate stacktraces but maybe I'm wrong ?
Found it! https://github.com/JetBrains/kotlin-native/pull/4085/files
freeCompilerArgs += "-Xg0"
(will soon become `freeCompilerArgs += "-Xadd-light-debug=enable`")