Skip to content

Commit 033652c

Browse files
authored
Update faq.md
1 parent a526269 commit 033652c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/faq.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -286,22 +286,22 @@ For these reasons, it's strongly recommended to not use brew for native library
286286

287287
If you build Rust wheels, you need to download the Rust compilers in manylinux.
288288
If you support 32-bit Windows, you need to add this as a potential target. You
289-
can do this, for example on GitHub Actions, with:
289+
can do this on GitHub Actiions, for example, with:
290290

291291
```yaml
292292
CIBW_BEFORE_ALL_LINUX: curl -sSf https://sh.rustup.rs | sh -s -- -y
293293
CIBW_BEFORE_ALL_WINDOWS: rustup target add i686-pc-windows-msvc
294294
CIBW_ENVIRONMENT_LINUX: "PATH=$HOME/.cargo/bin:$PATH"
295295
```
296296

297-
You probably need to skip PyPy (if using PyO3, anyway), and Rust doesn't support musllinux 1.1:
297+
You probably need to skip PyPy (if using PyO3, anyway), and Rust provides cargo for musllinux 32-bit:
298298

299299
```toml
300300
[tool.cibuildwheel]
301-
skip = ["pp*", "*musl*"]
301+
skip = ["pp*", "*-musllinux_i686"]
302302
```
303303

304-
Also see [maturin-action](https://github.com/PyO3/maturin-action) which is optimized for Rust wheels and can cross-compile.
304+
Also see [maturin-action](https://github.com/PyO3/maturin-action) which is optimized for Rust wheels and can cross-compile (and can build 32-bit musl, for example).
305305

306306
### macOS: ModuleNotFoundError
307307

0 commit comments

Comments
 (0)