diff options
Diffstat (limited to 'update.sh')
-rwxr-xr-x | update.sh | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -172,6 +172,10 @@ for i in $libcrypto_src/arch/*; do | |||
172 | $CP $libcrypto_src/arch/$arch/opensslconf.h include/arch/$arch/ | 172 | $CP $libcrypto_src/arch/$arch/opensslconf.h include/arch/$arch/ |
173 | mkdir -p crypto/arch/$arch | 173 | mkdir -p crypto/arch/$arch |
174 | $CP $libcrypto_src/arch/$arch/crypto_arch.h crypto/arch/$arch/ | 174 | $CP $libcrypto_src/arch/$arch/crypto_arch.h crypto/arch/$arch/ |
175 | crypto_cpu_caps=$libcrypto_src/arch/$arch/crypto_cpu_caps.c | ||
176 | if [ -f "$crypto_cpu_caps" ]; then | ||
177 | $CP "$crypto_cpu_caps" crypto/arch/$arch/ | ||
178 | fi | ||
175 | done | 179 | done |
176 | 180 | ||
177 | for i in $libcrypto_src/bn/arch/*; do | 181 | for i in $libcrypto_src/bn/arch/*; do |
@@ -282,7 +286,6 @@ for abi in elf macosx masm mingw64; do | |||
282 | gen_asm_stdout $abi sha/asm/sha1-x86_64.pl sha/sha1-$abi-x86_64.S | 286 | gen_asm_stdout $abi sha/asm/sha1-x86_64.pl sha/sha1-$abi-x86_64.S |
283 | gen_asm $abi sha/asm/sha512-x86_64.pl sha/sha256-$abi-x86_64.S | 287 | gen_asm $abi sha/asm/sha512-x86_64.pl sha/sha256-$abi-x86_64.S |
284 | gen_asm $abi sha/asm/sha512-x86_64.pl sha/sha512-$abi-x86_64.S | 288 | gen_asm $abi sha/asm/sha512-x86_64.pl sha/sha512-$abi-x86_64.S |
285 | gen_asm $abi x86_64cpuid.pl cpuid-$abi-x86_64.S | ||
286 | done | 289 | done |
287 | 290 | ||
288 | # copy libtls source | 291 | # copy libtls source |