ecl/src/gmp/mpn
Daniel Kochmański 5f702cf071 gmp: issue autoreconf -ivf (fixes ppc64le builds)
Signed-off-by: Daniel Kochmański <daniel@turtleware.eu>
2015-09-02 15:59:18 +02:00
..
a29k Version 4.2.1 of the GMP library 2007-01-20 12:25:14 +00:00
alpha Version 4.2.1 of the GMP library 2007-01-20 12:25:14 +00:00
arm Version 4.2.1 of the GMP library 2007-01-20 12:25:14 +00:00
clipper Version 4.2.1 of the GMP library 2007-01-20 12:25:14 +00:00
cray Version 4.2.1 of the GMP library 2007-01-20 12:25:14 +00:00
generic Remove tests for functions that are not used in the library (clock, gettimeofday, etc). Removed hamdist from the build process. 2013-10-06 21:28:59 +02:00
i960 Version 4.2.1 of the GMP library 2007-01-20 12:25:14 +00:00
ia64 Version 4.2.1 of the GMP library 2007-01-20 12:25:14 +00:00
lisp Version 4.2.1 of the GMP library 2007-01-20 12:25:14 +00:00
m68k Version 4.2.1 of the GMP library 2007-01-20 12:25:14 +00:00
m88k Version 4.2.1 of the GMP library 2007-01-20 12:25:14 +00:00
mips32 Version 4.2.1 of the GMP library 2007-01-20 12:25:14 +00:00
mips64 Version 4.2.1 of the GMP library 2007-01-20 12:25:14 +00:00
ns32k Version 4.2.1 of the GMP library 2007-01-20 12:25:14 +00:00
pa32 Version 4.2.1 of the GMP library 2007-01-20 12:25:14 +00:00
pa64 Version 4.2.1 of the GMP library 2007-01-20 12:25:14 +00:00
power Version 4.2.1 of the GMP library 2007-01-20 12:25:14 +00:00
powerpc32 Version 4.2.1 of the GMP library 2007-01-20 12:25:14 +00:00
powerpc64 Version 4.2.1 of the GMP library 2007-01-20 12:25:14 +00:00
pyr Version 4.2.1 of the GMP library 2007-01-20 12:25:14 +00:00
s390 Version 4.2.1 of the GMP library 2007-01-20 12:25:14 +00:00
sh Version 4.2.1 of the GMP library 2007-01-20 12:25:14 +00:00
sparc32 Version 4.2.1 of the GMP library 2007-01-20 12:25:14 +00:00
sparc64 Version 4.2.1 of the GMP library 2007-01-20 12:25:14 +00:00
thumb Version 4.2.1 of the GMP library 2007-01-20 12:25:14 +00:00
vax Version 4.2.1 of the GMP library 2007-01-20 12:25:14 +00:00
x86 Version 4.2.1 of the GMP library 2007-01-20 12:25:14 +00:00
x86_64 Version 4.2.1 of the GMP library 2007-01-20 12:25:14 +00:00
z8000 Version 4.2.1 of the GMP library 2007-01-20 12:25:14 +00:00
z8000x Version 4.2.1 of the GMP library 2007-01-20 12:25:14 +00:00
asm-defs.m4 Version 4.2.1 of the GMP library 2007-01-20 12:25:14 +00:00
cpp-ccas Version 4.2.1 of the GMP library 2007-01-20 12:25:14 +00:00
m4-ccas Undo the changes in gmp and replace them with the appropiate compilation flags 2007-01-30 10:08:52 +00:00
Makeasm.am Version 4.2.1 of the GMP library 2007-01-20 12:25:14 +00:00
Makefile.am Version 4.2.1 of the GMP library 2007-01-20 12:25:14 +00:00
Makefile.in gmp: issue autoreconf -ivf (fixes ppc64le builds) 2015-09-02 15:59:18 +02:00
README Version 4.2.1 of the GMP library 2007-01-20 12:25:14 +00:00

Copyright 1996, 1999 Free Software Foundation, Inc.

This file is part of the GNU MP Library.

The GNU MP Library is free software; you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation; either version 2.1 of the License, or (at your
option) any later version.

The GNU MP Library is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
License for more details.

You should have received a copy of the GNU Lesser General Public License
along with the GNU MP Library; see the file COPYING.LIB.  If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
02110-1301, USA.




This directory contains all code for the mpn layer of GMP.

Most subdirectories contain machine-dependent code, written in assembly or C.
The `generic' subdirectory contains default code, used when there is no
machine-dependent replacement for a particular machine.

There is one subdirectory for each ISA family.  Note that e.g., 32-bit SPARC
and 64-bit SPARC are very different ISA's, and thus cannot share any code.

A particular compile will only use code from one subdirectory, and the
`generic' subdirectory.  The ISA-specific subdirectories contain hierachies of
directories for various architecture variants and implementations; the
top-most level contains code that runs correctly on all variants.