AES assembly file name change

Some versions of GCC on the Mac will not run the file aes_asm.s through the preprocessor. There are some ifdefs in the file that are included when they shouldn't be. This is not a problem on Linux. Renaming the file to have a capital S extension forces the assembler to run with the preprocessor.
This commit is contained in:
John Safranek
2018-04-12 16:38:17 -07:00
parent 84f7bd8cde
commit 425cee64a7
2 changed files with 2 additions and 2 deletions

View File

@@ -204,7 +204,7 @@ src_libwolfssl_la_SOURCES += wolfcrypt/src/dsa.c
endif endif
if BUILD_AESNI if BUILD_AESNI
src_libwolfssl_la_SOURCES += wolfcrypt/src/aes_asm.s src_libwolfssl_la_SOURCES += wolfcrypt/src/aes_asm.S
endif endif
if BUILD_CAMELLIA if BUILD_CAMELLIA

View File

@@ -1,4 +1,4 @@
/* aes_asm.s /* aes_asm.S
* *
* Copyright (C) 2006-2017 wolfSSL Inc. * Copyright (C) 2006-2017 wolfSSL Inc.
* *