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
{{ message }}
This repository has been archived by the owner on Jul 25, 2020. It is now read-only.
As per rust-lang/rfcs#109, rustsqlite now produces libsqlite3.rlib which shares a same base name with SQLite (libsqlite3.a) and causes a name conflict when linked by other crates. It can be resolved either by giving -C extra-filename=_rust (or similar) to rustc, or by renaming the library. It may also be made a non-issue when Cargo may resolve this as well.
The text was updated successfully, but these errors were encountered:
As per rust-lang/rfcs#109, rustsqlite now produces
libsqlite3.rlib
which shares a same base name with SQLite (libsqlite3.a
) and causes a name conflict when linked by other crates. It can be resolved either by giving-C extra-filename=_rust
(or similar) to rustc, or by renaming the library. It may also be made a non-issue when Cargo may resolve this as well.The text was updated successfully, but these errors were encountered: