Allow disabling -march=native
without disabling intrinsics?
#539
Labels
minor
A label for PRs or issues that are minor in some sense.
resolved-pending-release
A label for issues that have been resolved and that can be closed when a new version is released.
technical
A necessary technical change, not interesting mathematically/feature-wise
For creating portable binaries, it is important to not use
-march=native
. But right now to disable this without patching, one has to use--with_intrinsics
but that actually disables more things that are perfectly fine to use in portable binaries, yet slow down things.So perhaps an option could be added which disabled only
-march=native
?(To be honest, I would do the opposite and not use
-march=native
by default, but that's just me, clearly you have decided otherwise :-) ).The text was updated successfully, but these errors were encountered: