Fix Mingw32 asm build: use the Unix
bignum assembly method of bn-586.pl and co-586.pl which (for some reason) VC++ doesn't use.
This commit is contained in:
parent
0fccb00b5b
commit
b89670ef0e
2 changed files with 4 additions and 1 deletions
|
@ -12,7 +12,8 @@ echo Generating x86 for GNU assember
|
|||
|
||||
echo Bignum
|
||||
cd crypto\bn\asm
|
||||
perl x86.pl gaswin > bn-win32.s
|
||||
perl bn-586.pl gaswin > bn-win32.s
|
||||
perl co-586.pl gaswin > co-win32.s
|
||||
cd ..\..\..
|
||||
|
||||
echo DES
|
||||
|
|
|
@ -25,6 +25,8 @@ if ($gaswin and !$no_asm)
|
|||
{
|
||||
$bn_asm_obj='$(OBJ_D)/bn-win32.o';
|
||||
$bn_asm_src='crypto/bn/asm/bn-win32.s';
|
||||
$bnco_asm_obj='$(OBJ_D)/co-win32.o';
|
||||
$bnco_asm_src='crypto/bn/asm/co-win32.s';
|
||||
$des_enc_obj='$(OBJ_D)/d-win32.o $(OBJ_D)/y-win32.o';
|
||||
$des_enc_src='crypto/des/asm/d-win32.s crypto/des/asm/y-win32.s';
|
||||
$bf_enc_obj='$(OBJ_D)/b-win32.o';
|
||||
|
|
Loading…
Reference in a new issue