-
Notifications
You must be signed in to change notification settings - Fork 58
Depend on libsqlite3-sys for bundled builds
#190
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 4 commits
9a6b47d
44a5038
afe9aed
37e73c9
7ef1021
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -28,6 +28,11 @@ | |
| //! implement your own set of callbacks if you wish to make use of them (see the | ||
| //! [`proj`](https://crates.io/crates/proj) crate for an example). | ||
| #[cfg(bundled_build)] | ||
| extern crate libsqlite3_sys; | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why do we need these
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Rustc only links crates that are explictly used somewhere, either by actually use items from that crate or by having an explicit |
||
| #[cfg(bundled_build)] | ||
| extern crate link_cplusplus; | ||
|
|
||
| #[cfg(not(feature = "nobuild"))] | ||
| include!(concat!(env!("OUT_DIR"), "/bindings.rs")); | ||
|
|
||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.