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
It would be useful if this crate read the CARGO_CFG_TARGET_ARCH and CARGO_CFG_TARGET_FEATURE environment variables to determine appropriate -march and other -m* flags to enable with CMake. For example, CARGO_CFG_TARGET_FEATURE=mmx,sse would correspond to -mmmx and -msse, CARGO_CFG_TARGET_ARCH=skylake would corresponding to -march=skylake, etc.
The text was updated successfully, but these errors were encountered:
It would be useful if this crate read the
CARGO_CFG_TARGET_ARCH
andCARGO_CFG_TARGET_FEATURE
environment variables to determine appropriate-march
and other-m*
flags to enable with CMake. For example,CARGO_CFG_TARGET_FEATURE=mmx,sse
would correspond to-mmmx
and-msse
,CARGO_CFG_TARGET_ARCH=skylake
would corresponding to-march=skylake
, etc.The text was updated successfully, but these errors were encountered: