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
I find it useful that build_ext --inplace command copies artifacts into target destination, but by default setuptools-rust builds dev target, is there a way (e.g. using some environment variable) to switch to release target?
Thanks in advance.
The text was updated successfully, but these errors were encountered:
Although I'm tempted to suggest this might be better served by maturin develop --release, as setup.py as an entry point is deprecated so I've been considering dropping the build_rust subcommand. (#259)
You can also achieve this yourself by writing custom logic in your setup.py which sets args for your RustExtension.
I find it useful that
build_ext --inplace
command copies artifacts into target destination, but by defaultsetuptools-rust
buildsdev
target, is there a way (e.g. using some environment variable) to switch torelease
target?Thanks in advance.
The text was updated successfully, but these errors were encountered: