Commit b89670ef authored by Dr. Stephen Henson's avatar Dr. Stephen Henson
Browse files

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.
parent 0fccb00b
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -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
+2 −0
Original line number Diff line number Diff line
@@ -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';