Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
N
nettle
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Norbert Pócs
nettle
Commits
456137ff
Commit
456137ff
authored
Aug 26, 2020
by
Niels Möller
Browse files
Options
Downloads
Patches
Plain Diff
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
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
configure.ac
+4
-4
4 additions, 4 deletions
configure.ac
with
4 additions
and
4 deletions
configure.ac
+
4
−
4
View file @
456137ff
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment