We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I think this would look like the following:
MYSQL_ADD_RUST_PLUGIN
cargo
cargo rustc --manifest-path rust/somepath/Cargo.toml --target-dir rust/target --crate-type=cdylib
cargo rustc --manifest-path rust/somepath/Cargo.toml --target-dir rust/target --crate-type=staticlib -- --cfg make_static_lib
--release
rust/target/debug/
rust/target/release
Not sure how to handle C code dependency and communicate that with the build system for dynamic, but for static I think it would just work
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I think this would look like the following:
MYSQL_ADD_RUST_PLUGIN
macrocargo
is available, possibly validate version (not sure what our MSRV is here but I think 1.65 is probably reasonable)cargo rustc --manifest-path rust/somepath/Cargo.toml --target-dir rust/target --crate-type=cdylib
cargo rustc --manifest-path rust/somepath/Cargo.toml --target-dir rust/target --crate-type=staticlib -- --cfg make_static_lib
--release
or based on whether it's a debug buildrust/target/debug/
orrust/target/release
(can also rename)Not sure how to handle C code dependency and communicate that with the build system for dynamic, but for static I think it would just work
The text was updated successfully, but these errors were encountered: