diff options
author | lloyd <[email protected]> | 2015-02-22 16:17:15 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2015-02-22 16:17:15 +0000 |
commit | 35d34cae05c5eb114bdbec48f690f330f5edf2fa (patch) | |
tree | 938260d41a8d57de7eee277aa300c4befa8efc08 /src/build-data | |
parent | a29ea0e7a493b0076cd9c91b2a89d7452b9f90d8 (diff) |
Split amalagamation into ISA specific objects
Diffstat (limited to 'src/build-data')
-rw-r--r-- | src/build-data/arch/x86_32.txt | 1 | ||||
-rw-r--r-- | src/build-data/cc/clang.txt | 3 | ||||
-rw-r--r-- | src/build-data/cc/gcc.txt | 3 |
3 files changed, 2 insertions, 5 deletions
diff --git a/src/build-data/arch/x86_32.txt b/src/build-data/arch/x86_32.txt index 54f821a84..89802124d 100644 --- a/src/build-data/arch/x86_32.txt +++ b/src/build-data/arch/x86_32.txt @@ -69,7 +69,6 @@ sse4.2 avx2 bmi2 aesni -clmul rdrand sha </isa_extensions> diff --git a/src/build-data/cc/clang.txt b/src/build-data/cc/clang.txt index a7d334aee..cbb68bb21 100644 --- a/src/build-data/cc/clang.txt +++ b/src/build-data/cc/clang.txt @@ -38,8 +38,7 @@ sse4.1 -> "-msse4.1" sse4.2 -> "-msse4.2" avx2 -> "-mavx2" bmi2 -> "-mbmi2" -aesni -> "-maes" -clmul -> "-mpclmul" +aesni -> "-maes -mpclmul" rdrand -> "-mrdrnd" sha -> "-msha" altivec -> "-maltivec" diff --git a/src/build-data/cc/gcc.txt b/src/build-data/cc/gcc.txt index 8db3fdf61..a22450f3b 100644 --- a/src/build-data/cc/gcc.txt +++ b/src/build-data/cc/gcc.txt @@ -43,8 +43,7 @@ sse4.1 -> "-msse4.1" sse4.2 -> "-msse4.2" avx2 -> "-mavx2" bmi2 -> "-mbmi2" -aesni -> "-maes" -clmul -> "-mpclmul" +aesni -> "-maes -mpclmul" rdrand -> "-mrdrnd" sha -> "-msha" altivec -> "-maltivec" |