You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
So, SQLDelight gradle plugin option linkSqlite will loop through all binaries and add to linkerOpts -lsqlite3. This means that the libs from SQLiter and SQLDelight will be linked, instead. Need to change the static lib build such that the object name is sqlite3mc.o, and then add linkerOpts -lsqlite3mc.
A gradle plugin will be necessary for consumers to apply which will automatically configure their SQLDelight extension which will
set linkSqlite to false
after evaluation, will addlinkerOpts -lsqlite3mc to all kotlin native binaries
The text was updated successfully, but these errors were encountered:
Reopening. Need to now add link for -framework Security for apple targets. Plus, will be good to have so in the future, any other link options can be automatically had for that version release.
So,
SQLDelight
gradle plugin optionlinkSqlite
will loop through all binaries and add to linkerOpts-lsqlite3
. This means that the libs fromSQLiter
andSQLDelight
will be linked, instead. Need to change the static lib build such that the object name issqlite3mc.o
, and then add linkerOpts-lsqlite3mc
.A gradle plugin will be necessary for consumers to apply which will automatically configure their SQLDelight extension which will
linkSqlite
to false-lsqlite3mc
to all kotlin native binariesThe text was updated successfully, but these errors were encountered: