How can I keep two version (release/optimized vs. ...
# kotlin-native
n
How can I keep two version (release/optimized vs. debug) of a cinterop library? Headers are the same, but the included *.a lib is different and I'd like to be able to compile a klib with either one of them. cinterops live in
KotlinCompilation
so one option would be to create "release" and "debug" compilations. But if I do so, cinterop commonization does not work. Does anyone have any idea?