does anyone know why `linkerOpts` in a .def file w...
# multiplatform
k
does anyone know why
linkerOpts
in a .def file works fine, and
linkerOpts
as specified here does not: https://kotlinlang.org/docs/reference/building-mpp-with-gradle.html#configuring-binaries
at least for a framework binary
d
Arguments specified in def file are "stickier", they are used at runtime. But the ones specified by gradle are only used at build time, so consuming application will have to redefine the arguments.