mirror of
git://git.gnupg.org/gnupg.git
synced 2025-07-02 22:46:30 +02:00
Add features packet and fixes MIPS3.
This commit is contained in:
parent
93fe596356
commit
c287a8d05b
12 changed files with 66 additions and 2 deletions
|
@ -1,3 +1,9 @@
|
|||
2000-10-11 Werner Koch <wk@gnupg.org>
|
||||
|
||||
* generic/mpi-asm-defs.h: New.
|
||||
* mips3/mpi-asm-defs.h: New.
|
||||
* config.links: Create a link to one of the above files.
|
||||
|
||||
Fri Jul 28 18:19:11 CEST 2000 Werner Koch <wk@openit.de>
|
||||
|
||||
* mpicoder.c (gcry_mpi_scan): Normalize the returned MPI.
|
||||
|
|
|
@ -278,3 +278,14 @@ for fn in $mpi_ln_modules ; do
|
|||
done
|
||||
done
|
||||
|
||||
# Same thing for the file which defines the limb size
|
||||
path="$path generic"
|
||||
for dir in $path ; do
|
||||
rm -f $srcdir/mpi/mpi-asm-defs.h
|
||||
if test -f $srcdir/mpi/$dir/mpi-asm-defs.h ; then
|
||||
mpi_ln_src="$mpi_ln_src mpi/$dir/mpi-asm-defs.h"
|
||||
mpi_ln_dst="$mpi_ln_dst mpi/mpi-asm-defs.h"
|
||||
break;
|
||||
fi
|
||||
done
|
||||
|
||||
|
|
|
@ -6,4 +6,5 @@ mpih-lshift.c
|
|||
mpih-rshift.c
|
||||
mpih-sub1.c
|
||||
udiv-w-sdiv.c
|
||||
mpi-asm-defs.h
|
||||
|
||||
|
|
9
mpi/generic/mpi-asm-defs.h
Normal file
9
mpi/generic/mpi-asm-defs.h
Normal file
|
@ -0,0 +1,9 @@
|
|||
/* This file defines some basic constants for the MPI machinery. We
|
||||
* need to define the types on a per-CPU basis, so it is done with
|
||||
* this file here. */
|
||||
#define BYTES_PER_MPI_LIMB (sizeof unsigned long)
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
@ -6,4 +6,5 @@ mpih-mul2.S
|
|||
mpih-mul3.S
|
||||
mpih-lshift.S
|
||||
mpih-rshift.S
|
||||
mpi-asm-defs.h
|
||||
|
||||
|
|
10
mpi/mips3/mpi-asm-defs.h
Normal file
10
mpi/mips3/mpi-asm-defs.h
Normal file
|
@ -0,0 +1,10 @@
|
|||
/* This file defines some basic constants for the MPI machinery. We
|
||||
* need to define the types on a per-CPU basis, so it is done with
|
||||
* this file here. */
|
||||
#define BYTES_PER_MPI_LIMB 8
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue