File: readme.gmp

package info (click to toggle)
gcl 2.6.7-32
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 124,580 kB
  • ctags: 147,324
  • sloc: ansic: 829,363; asm: 311,430; lisp: 163,883; exp: 45,962; makefile: 41,896; sh: 31,641; cpp: 13,316; yacc: 6,093; perl: 3,454; tcl: 3,181; lex: 1,620; sed: 684; pascal: 175; awk: 56; fortran: 24; csh: 23
file content (20 lines) | stat: -rw-r--r-- 915 bytes parent folder | download | duplicates (18)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
The gmp directory is from the gmp 3.1.1 distribution with the following
changes:

mpn/mul_n.c

has been altered so as to use alloca instead of malloc, since the malloc
at that point causes a problem for gcl.    All other temporary storage
in the mpn directory should be allocated using TMP_ALLOC (ie alloca).   Hopefully this will be changed in a future release of gmp.   However since we
need to know about the allocs in the mpn directory (and the mpz directory),
it is probably safer to use the gmp here, and to periodically update it
after having carefully perused the contents.

We only need the mpz mpn directories, but the other makefiles are included
so as not to have to change the configure/make mechanism. 

The list of files here was constructed via: 

(cd /tmp/gmp-3.1/ ; tar cvf - lt* COPYING README install-sh conf* *.h mpn mpz *akefile.in */*akefile.in */*/*akefile.in *.c) | (cd tmp  ; tar xvf -)