Disable Clang's integrated assembler for the AES-NI files for now.

Somewhere in this mess of .byte streams, corruption happens. Disassembly
only shows slightly different filling of alignment sequences, further
analysis is needed.

XXX This should be rewritten to be proper assembler code
This commit is contained in:
joerg 2011-07-17 19:48:31 +00:00
parent 4b70f9c001
commit 5158e28f3b

View File

@ -3,3 +3,6 @@ AES_SRCS = aes-x86_64.S aesni-x86_64.S
AESCPPFLAGS = -DAES_ASM -DOPENSSL_IA32_SSE2
AESNI = yes
.include "../../aes.inc"
COPTS.aesni-x86_64.S+= ${${ACTIVE_CC} == "clang":?-no-integrated-as:}
COPTS.aes-x86_64.S+= ${${ACTIVE_CC} == "clang":?-no-integrated-as:}