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
In delta-rs we have a .cargo/config.toml in the root and .carg/config.toml in our python subcrate.
Both of the following rustflags:
[target.aarch64-apple-darwin] rustflags = [ "-C", "link-arg=-undefined", "-C", "link-arg=dynamic_lookup", ]
Running plain maturin develop will invalidate the incremental compilation.
maturin develop
Only if I manually provide the RUSTFLAGS it works:
RUSTFLAGS="-C link-arg=-undefined -C link-arg=dynamic_lookup" maturin develop
Shouldn't maturin use the .cargo/config.toml during maturin develop
maturin --version
1.8.2
python -V
3.11
pip -V
UV is used
pyo3
cargo build
/
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Bug Description
In delta-rs we have a .cargo/config.toml in the root and .carg/config.toml in our python subcrate.
Both of the following rustflags:
Running plain
maturin develop
will invalidate the incremental compilation.Only if I manually provide the RUSTFLAGS it works:
RUSTFLAGS="-C link-arg=-undefined -C link-arg=dynamic_lookup" maturin develop
Shouldn't maturin use the .cargo/config.toml during
maturin develop
Your maturin version (
maturin --version
)1.8.2
Your Python version (
python -V
)3.11
Your pip version (
pip -V
)UV is used
What bindings you're using
pyo3
Does
cargo build
work?If on windows, have you checked that you aren't accidentally using unix path (those with the forward slash
/
)?Steps to Reproduce
The text was updated successfully, but these errors were encountered: