diff options
author | Jack Lloyd <[email protected]> | 2019-04-17 18:12:52 -0400 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2019-04-17 18:12:52 -0400 |
commit | b6963f249405a1202d6775b7105ef78a06b8583e (patch) | |
tree | 950025d4e9692655a7c1db396a359187cc4509f8 /src/lib/hash/sha1 | |
parent | fc4e8b84152211c966ee5c50b34b4893c69ee0f1 (diff) |
Make the ISA list a list
Diffstat (limited to 'src/lib/hash/sha1')
-rw-r--r-- | src/lib/hash/sha1/sha1_armv8/info.txt | 4 | ||||
-rw-r--r-- | src/lib/hash/sha1/sha1_sse2/info.txt | 4 | ||||
-rw-r--r-- | src/lib/hash/sha1/sha1_x86/info.txt | 6 |
3 files changed, 11 insertions, 3 deletions
diff --git a/src/lib/hash/sha1/sha1_armv8/info.txt b/src/lib/hash/sha1/sha1_armv8/info.txt index 405ac412c..51409c943 100644 --- a/src/lib/hash/sha1/sha1_armv8/info.txt +++ b/src/lib/hash/sha1/sha1_armv8/info.txt @@ -2,7 +2,9 @@ SHA1_ARMV8 -> 20170117 </defines> -need_isa armv8crypto +<isa> +armv8crypto +</isa> <cc> gcc:4.9 diff --git a/src/lib/hash/sha1/sha1_sse2/info.txt b/src/lib/hash/sha1/sha1_sse2/info.txt index 272bf5e8d..2aee95b15 100644 --- a/src/lib/hash/sha1/sha1_sse2/info.txt +++ b/src/lib/hash/sha1/sha1_sse2/info.txt @@ -2,4 +2,6 @@ SHA1_SSE2 -> 20160803 </defines> -need_isa sse2 +<isa> +sse2 +</isa> diff --git a/src/lib/hash/sha1/sha1_x86/info.txt b/src/lib/hash/sha1/sha1_x86/info.txt index cfa1750c2..9dba8bf00 100644 --- a/src/lib/hash/sha1/sha1_x86/info.txt +++ b/src/lib/hash/sha1/sha1_x86/info.txt @@ -2,7 +2,11 @@ SHA1_X86_SHA_NI -> 20170518 </defines> -need_isa sha,ssse3,sse41 +<isa> +sha +ssse3 +sse41 +</isa> <cc> clang:3.9 |