configure: Skip assembly support checks, when assembly is disabled

(cherry picked from commit bitcoin/bitcoin@afe0875577)
This commit is contained in:
Luke Dashjr 2018-07-27 17:25:09 +00:00 committed by Jack Grigg
parent 80a3174354
commit 7a4f0b6f76
1 changed files with 4 additions and 0 deletions

View File

@ -330,6 +330,8 @@ if test "x$CXXFLAGS_overridden" = "xno"; then
AX_CHECK_COMPILE_FLAG([-Wdeprecated-register],[CXXFLAGS="$CXXFLAGS -Wno-deprecated-register"],,[[$CXXFLAG_WERROR]])
fi
if test "x$use_asm" = "xyes"; then
# 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.
@ -407,6 +409,8 @@ AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
)
CXXFLAGS="$TEMP_CXXFLAGS"
fi
CPPFLAGS="$CPPFLAGS -DHAVE_BUILD_INFO -D__STDC_FORMAT_MACROS"
AC_ARG_WITH([utils],