mirror of
https://github.com/dashpay/dash.git
synced 2024-12-27 04:52:59 +01:00
build: always attempt to enable targeted sse42 cxxflags
This avoids a counter-intuitive drop in performance when manually adjusting the flags.
This commit is contained in:
parent
f66c596505
commit
9baca41985
11
configure.ac
11
configure.ac
@ -258,14 +258,13 @@ if test "x$CXXFLAGS_overridden" = "xno"; then
|
|||||||
AX_CHECK_COMPILE_FLAG([-Wunused-local-typedef],[CXXFLAGS="$CXXFLAGS -Wno-unused-local-typedef"],,[[$CXXFLAG_WERROR]])
|
AX_CHECK_COMPILE_FLAG([-Wunused-local-typedef],[CXXFLAGS="$CXXFLAGS -Wno-unused-local-typedef"],,[[$CXXFLAG_WERROR]])
|
||||||
AX_CHECK_COMPILE_FLAG([-Wdeprecated-register],[CXXFLAGS="$CXXFLAGS -Wno-deprecated-register"],,[[$CXXFLAG_WERROR]])
|
AX_CHECK_COMPILE_FLAG([-Wdeprecated-register],[CXXFLAGS="$CXXFLAGS -Wno-deprecated-register"],,[[$CXXFLAG_WERROR]])
|
||||||
AX_CHECK_COMPILE_FLAG([-Wimplicit-fallthrough],[CXXFLAGS="$CXXFLAGS -Wno-implicit-fallthrough"],,[[$CXXFLAG_WERROR]])
|
AX_CHECK_COMPILE_FLAG([-Wimplicit-fallthrough],[CXXFLAGS="$CXXFLAGS -Wno-implicit-fallthrough"],,[[$CXXFLAG_WERROR]])
|
||||||
|
|
||||||
# Check for optional instruction set support. Enabling these does _not_ imply that all code will
|
|
||||||
# be compiled with them, rather that specific objects/libs may use them after checking for runtime
|
|
||||||
# compatibility.
|
|
||||||
AX_CHECK_COMPILE_FLAG([-msse4.2],[[SSE42_CXXFLAGS="-msse4.2"]],,[[$CXXFLAG_WERROR]])
|
|
||||||
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# Check for optional instruction set support. Enabling these does _not_ imply that all code will
|
||||||
|
# be compiled with them, rather that specific objects/libs may use them after checking for runtime
|
||||||
|
# compatibility.
|
||||||
|
AX_CHECK_COMPILE_FLAG([-msse4.2],[[SSE42_CXXFLAGS="-msse4.2"]],,[[$CXXFLAG_WERROR]])
|
||||||
|
|
||||||
TEMP_CXXFLAGS="$CXXFLAGS"
|
TEMP_CXXFLAGS="$CXXFLAGS"
|
||||||
CXXFLAGS="$CXXFLAGS $SSE42_CXXFLAGS"
|
CXXFLAGS="$CXXFLAGS $SSE42_CXXFLAGS"
|
||||||
AC_MSG_CHECKING(for assembler crc32 support)
|
AC_MSG_CHECKING(for assembler crc32 support)
|
||||||
|
Loading…
Reference in New Issue
Block a user