Skip to content
Snippets Groups Projects
Commit 456137ff authored by Niels Möller's avatar Niels Möller
Browse files

Add power FAT_TEST_LIST, and make --enable-power-crypto-ext default to false.

parent 7d5351e1
No related branches found
No related tags found
No related merge requests found
...@@ -89,11 +89,9 @@ AC_ARG_ENABLE(x86-sha-ni, ...@@ -89,11 +89,9 @@ AC_ARG_ENABLE(x86-sha-ni,
AC_HELP_STRING([--enable-x86-sha-ni], [Enable x86_64 sha_ni instructions. (default=no)]),, AC_HELP_STRING([--enable-x86-sha-ni], [Enable x86_64 sha_ni instructions. (default=no)]),,
[enable_x86_sha_ni=no]) [enable_x86_sha_ni=no])
# Default yes for initial testing
AC_ARG_ENABLE(power-crypto-ext, AC_ARG_ENABLE(power-crypto-ext,
AC_HELP_STRING([--enable-power-crypto-ext], [Enable POWER crypto AC_HELP_STRING([--enable-power-crypto-ext], [Enable POWER crypto extensions. (default=no)]),,
extensions. (default=yes)]),, [enable_power_crypto_ext=no])
[enable_power_crypto_ext=yes])
AC_ARG_ENABLE(mini-gmp, AC_ARG_ENABLE(mini-gmp,
AC_HELP_STRING([--enable-mini-gmp], [Enable mini-gmp, used instead of libgmp.]),, AC_HELP_STRING([--enable-mini-gmp], [Enable mini-gmp, used instead of libgmp.]),,
...@@ -450,6 +448,8 @@ if test "x$enable_assembler" = xyes ; then ...@@ -450,6 +448,8 @@ if test "x$enable_assembler" = xyes ; then
if test "x$enable_fat" = xyes ; then if test "x$enable_fat" = xyes ; then
asm_path="powerpc64/fat $asm_path" asm_path="powerpc64/fat $asm_path"
OPT_NETTLE_SOURCES="fat-ppc.c $OPT_NETTLE_SOURCES" OPT_NETTLE_SOURCES="fat-ppc.c $OPT_NETTLE_SOURCES"
FAT_TEST_LIST="none crypto_ext"
fi
elif test "x$enable_power_crypto_ext" = xyes ; then elif test "x$enable_power_crypto_ext" = xyes ; then
asm_path="powerpc64/p8 $asm_path" asm_path="powerpc64/p8 $asm_path"
fi fi
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment