diff options
author | lloyd <[email protected]> | 2010-08-08 21:18:28 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2010-08-08 21:18:28 +0000 |
commit | bb4bddd440520ca3aee94f4b37d9d6425018d9d8 (patch) | |
tree | 69aa95f6d5bde9f721ff70b5475f13304ad26fe3 | |
parent | 65058f2c70fc0cb6e45510502e1a4239905096e9 (diff) |
Also allow clang with 32-bit assembly code, everything seems to work
fine with latest SVN.
-rw-r--r-- | src/block/serpent_ia32/info.txt | 19 | ||||
-rw-r--r-- | src/hash/md4_ia32/info.txt | 19 | ||||
-rw-r--r-- | src/hash/md5_ia32/info.txt | 19 | ||||
-rw-r--r-- | src/hash/sha1_amd64/info.txt | 18 | ||||
-rw-r--r-- | src/hash/sha1_ia32/info.txt | 19 | ||||
-rw-r--r-- | src/math/bigint/mp_ia32/info.txt | 1 | ||||
-rw-r--r-- | src/utils/asm_amd64/info.txt | 8 | ||||
-rw-r--r-- | src/utils/asm_ia32/info.txt | 11 |
8 files changed, 20 insertions, 94 deletions
diff --git a/src/block/serpent_ia32/info.txt b/src/block/serpent_ia32/info.txt index fa6d9b9d9..c5f0946b8 100644 --- a/src/block/serpent_ia32/info.txt +++ b/src/block/serpent_ia32/info.txt @@ -2,25 +2,6 @@ define SERPENT_IA32 load_on asm_ok -<arch> -ia32 -</arch> - -<cc> -gcc -icc -</cc> - -# ELF systems -<os> -linux -freebsd -dragonfly -netbsd -openbsd -solaris -</os> - <requires> asm_ia32 serpent diff --git a/src/hash/md4_ia32/info.txt b/src/hash/md4_ia32/info.txt index 732285c56..1421de2c4 100644 --- a/src/hash/md4_ia32/info.txt +++ b/src/hash/md4_ia32/info.txt @@ -2,25 +2,6 @@ define MD4_IA32 load_on asm_ok -<arch> -ia32 -</arch> - -<cc> -gcc -icc -</cc> - -# ELF systems -<os> -linux -freebsd -dragonfly -netbsd -openbsd -solaris -</os> - <requires> asm_ia32 md4 diff --git a/src/hash/md5_ia32/info.txt b/src/hash/md5_ia32/info.txt index 48a8b4a10..25d8ed3e8 100644 --- a/src/hash/md5_ia32/info.txt +++ b/src/hash/md5_ia32/info.txt @@ -2,25 +2,6 @@ define MD5_IA32 load_on asm_ok -<arch> -ia32 -</arch> - -<cc> -gcc -icc -</cc> - -# ELF systems -<os> -linux -freebsd -dragonfly -netbsd -openbsd -solaris -</os> - <requires> asm_ia32 md5 diff --git a/src/hash/sha1_amd64/info.txt b/src/hash/sha1_amd64/info.txt index 681bddbc1..9da68f3c6 100644 --- a/src/hash/sha1_amd64/info.txt +++ b/src/hash/sha1_amd64/info.txt @@ -2,24 +2,6 @@ define SHA1_AMD64 load_on asm_ok -<arch> -amd64 -</arch> - -<cc> -clang -gcc -icc -</cc> - -# ELF systems -<os> -linux -netbsd -openbsd -solaris -</os> - <requires> asm_engine asm_amd64 diff --git a/src/hash/sha1_ia32/info.txt b/src/hash/sha1_ia32/info.txt index 0361395fe..d6f223d05 100644 --- a/src/hash/sha1_ia32/info.txt +++ b/src/hash/sha1_ia32/info.txt @@ -2,25 +2,6 @@ define SHA1_IA32 load_on asm_ok -<arch> -ia32 -</arch> - -<cc> -gcc -icc -</cc> - -# ELF systems -<os> -linux -freebsd -dragonfly -netbsd -openbsd -solaris -</os> - <requires> asm_ia32 sha1 diff --git a/src/math/bigint/mp_ia32/info.txt b/src/math/bigint/mp_ia32/info.txt index 182f34eb7..1659f74cf 100644 --- a/src/math/bigint/mp_ia32/info.txt +++ b/src/math/bigint/mp_ia32/info.txt @@ -12,6 +12,7 @@ ia32 </arch> <cc> +clang gcc icc </cc> diff --git a/src/utils/asm_amd64/info.txt b/src/utils/asm_amd64/info.txt index edcb11a7f..404aeca7b 100644 --- a/src/utils/asm_amd64/info.txt +++ b/src/utils/asm_amd64/info.txt @@ -14,6 +14,14 @@ gcc icc </cc> +# ELF systems +<os> +linux +netbsd +openbsd +solaris +</os> + <requires> asm_engine </requires> diff --git a/src/utils/asm_ia32/info.txt b/src/utils/asm_ia32/info.txt index 094d02a75..997d51b8c 100644 --- a/src/utils/asm_ia32/info.txt +++ b/src/utils/asm_ia32/info.txt @@ -8,7 +8,18 @@ asm_macr_ia32.h ia32 </arch> +# ELF systems +<os> +linux +freebsd +dragonfly +netbsd +openbsd +solaris +</os> + <cc> +clang gcc icc </cc> |