mirror of
https://github.com/matrix-construct/construct
synced 2024-11-29 10:12:39 +01:00
configure: Disable use of SSE4a instructions.
This commit is contained in:
parent
98009cf4d7
commit
dcc1b37d25
1 changed files with 5 additions and 1 deletions
|
@ -420,8 +420,12 @@ AM_COND_IF([GENERIC],
|
|||
RB_VAR_PREPEND([CXXFLAGS], ["-mtune=generic"])
|
||||
], [
|
||||
machine_tuning="native instruction set"
|
||||
RB_VAR_PREPEND([CXXFLAGS], ["-march=native"])
|
||||
|
||||
dnl AMD K10's SSE4a doesn't work with valgrind
|
||||
RB_VAR_PREPEND([CXXFLAGS], ["-mno-sse4a"])
|
||||
|
||||
RB_VAR_PREPEND([CXXFLAGS], ["-mtune=native"])
|
||||
RB_VAR_PREPEND([CXXFLAGS], ["-march=native"])
|
||||
])
|
||||
|
||||
dnl
|
||||
|
|
Loading…
Reference in a new issue