messense
messense
Is it possible to build a musl `libgcc_s.so` in our docker image so maturin can bundle it?
Maybe just download one from Alpine Linux packages if it's compatible: https://pkgs.alpinelinux.org/package/edge/main/loongarch64/libgcc
I have encountered this very issue before, I wrote an article about it: https://messense.me/uwsgi-re-fork-master (It's in Chinese but you should be able to Google translate it I think) The basic...
Pull requests are welcome!
There isn't official prebuilt std library support for riscv64 musl target in Rust, and [compiler-builtins](https://github.com/rust-lang/compiler-builtins) lacks support for it so we can't produce an usable std library yet, makes it...
pre-commit would reformat vscode formatted file and vice versa, here is the ruff lsp server logs: ``` 2026-02-26 15:41:43.996706333 INFO Registering workspace: /home/ubuntu/workspace/project 2026-02-26 15:41:43.997131786 INFO Configuration file watcher successfully...
FYI, we already have `MATURIN_PEP517_USE_BASE_PYTHON` env var in maturin: https://github.com/PyO3/maturin/blob/c76018bae4dc8400ef2b2989a4d273df942109bf/maturin/__init__.py#L52
Correct, we do need pyo3 support to make it work better with build requirements etc, your proposal makes sense.
@Bben01 Could you clarify where your shared Python sources live relative to the project checkout? The current PR follows symlinked Python package directories, but there is a safety tradeoff: following...
As you have said the fix should be straightforward, feel free to send a PR. But IMO the bigger issue is that we don't have test coverage for MSYS2/MinGW in...