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
Copy file name to clipboardExpand all lines: README.md
+11-2Lines changed: 11 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,11 +11,20 @@ Cargo subcommand to build multiple versions of the same binary, each with a diff
11
11
12
12
`cargo-multivers` builds multiple versions of the binary of a Rust package.
13
13
Each version is built with a set of CPU features (e.g., `+cmpxchg16b,+fxsr,+sse,+sse2,+sse3`) from a CPU (e.g., `ivybridge`) supported by the target (e.g., `x86_64-pc-windows-msvc`).
14
-
It does not build the powerset of the CPU features, but only a subset: from the list of CPU known to `rustc` for a given target, it fetches each set of CPU features and filters out
14
+
15
+
By default, it lists the CPUs known to `rustc` for a given target, then it fetches each set of CPU features and filters out
15
16
the duplicates.
17
+
You can also add a section to your `Cargo.toml` to set the allowed list of CPUs for your package.
0 commit comments