We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d14a0bd commit 71619c7Copy full SHA for 71619c7
README.md
@@ -201,6 +201,15 @@ Generate the bindings:
201
You can use [nbigaouette/windows_vagrant_rust](https://github.com/nbigaouette/windows_vagrant_rust)
202
to provision a Windows VM that can build the project and generate the bindings.
203
204
+Windows can build both x86 and x86_64 bindings:
205
+
206
+```sh
207
+❯ rustup target add i686-pc-windows-msvc x86_64-pc-windows-msvc
208
+❯ cd onnxruntime-sys
209
+❯ cargo build --features generate-bindings --target i686-pc-windows-msvc
210
+❯ cargo build --features generate-bindings --target x86_64-pc-windows-msvc
211
+```
212
213
## Conduct
214
215
The [Rust Code of Conduct](https://www.rust-lang.org/conduct.html) shall be respected. For
0 commit comments