2008-05-19 09:37:29 -04:00
|
|
|
|
|
2008-05-19 10:56:13 -04:00
|
|
|
|
Building MPIR with Microsoft Visual Studio 2008
|
|
|
|
|
===============================================
|
|
|
|
|
|
2008-05-19 09:37:29 -04:00
|
|
|
|
A Note On Licensing
|
|
|
|
|
===================
|
|
|
|
|
|
|
|
|
|
The GMP files used in this distribution have been derived from
|
2008-05-19 10:56:13 -04:00
|
|
|
|
the GMP 4.2.1 distribution and are all licensed under Gnu LGPL
|
|
|
|
|
v2.1 license terms. The license under which these files are
|
|
|
|
|
distributed here are set out in the files in the directory
|
|
|
|
|
<build.vc9\gnu.license>.
|
2008-05-19 09:37:29 -04:00
|
|
|
|
|
|
|
|
|
Other files in this distribution that have been created by me
|
|
|
|
|
for use in building GMP, MPIR and/or MPFR using Microsoft Visual
|
2008-05-19 10:56:13 -04:00
|
|
|
|
Studio 2008 are provided under the same license terms.
|
2008-05-19 09:37:29 -04:00
|
|
|
|
|
|
|
|
|
Using the Assembler Based Build Projects
|
|
|
|
|
========================================
|
|
|
|
|
|
|
|
|
|
If you wish to use the assembler files you will need the YASM
|
|
|
|
|
x86/x64 assembler (r1438 or later) for Windows which can be
|
|
|
|
|
obtained from:
|
|
|
|
|
|
|
|
|
|
http://www.tortall.net/projects/yasm/
|
|
|
|
|
|
|
|
|
|
This assembler should be placed in the bin directory used by
|
|
|
|
|
VC++, which, for Visual Stduio 2008, is typically:
|
|
|
|
|
|
|
|
|
|
C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\bin
|
|
|
|
|
|
|
|
|
|
You will also need to move the yasm.rules file from this
|
|
|
|
|
distribution into the directory where Visual Studio 2008
|
|
|
|
|
expects to find it, which is typically:
|
|
|
|
|
|
|
|
|
|
C:\Program Files (x86)\Microsoft Visual Studio 9.0
|
|
|
|
|
\VC\VCProjectDefaults
|
|
|
|
|
|
|
|
|
|
Alternatively you can configure the path for rules files in
|
|
|
|
|
the VC++ configuration dialogue.
|
|
|
|
|
|
|
|
|
|
The NASM assembler is no longer supported as it has problems
|
|
|
|
|
with include file directory handling that the NASM team are
|
|
|
|
|
not willing to fix.
|
|
|
|
|
|
|
|
|
|
You will need to install Python if you wish to use the scripts
|
2008-05-19 10:56:13 -04:00
|
|
|
|
that automate the MPIR and MPFR tests. Otherwise these have to
|
2008-05-19 09:37:29 -04:00
|
|
|
|
be compiled and run manually.
|
|
|
|
|
|
2008-05-19 10:56:13 -04:00
|
|
|
|
Compiling MPIR with the Visual Studio C/C++
|
|
|
|
|
===========================================
|
2008-05-19 09:37:29 -04:00
|
|
|
|
|
2008-05-19 10:56:13 -04:00
|
|
|
|
These VC++ build projects are primarily designed to work with
|
|
|
|
|
Microsoft Visual Studio 2008 Professional. They do not work
|
|
|
|
|
directly with Microsoft Visual C++ 2008 Express but a Python
|
|
|
|
|
program is provided to convert them into a form that can be
|
|
|
|
|
used.
|
2008-05-19 09:37:29 -04:00
|
|
|
|
|
|
|
|
|
Building with Visual Studio 2005
|
|
|
|
|
================================
|
|
|
|
|
|
|
|
|
|
The Python program vc98_swap.py will convert VC9 build projects
|
|
|
|
|
into those needed for Visual Studio 2005 (VC8). It will also
|
|
|
|
|
convert files that have been converted in this way back
|
|
|
|
|
into their original form. It does this conversion by
|
|
|
|
|
looking for *.vcproj files in the current working directory
|
|
|
|
|
and its sub-directories and changing the following line in
|
|
|
|
|
each of them:
|
|
|
|
|
|
|
|
|
|
Version="9.00"
|
|
|
|
|
|
|
|
|
|
to:
|
|
|
|
|
|
|
|
|
|
Version="8.00"
|
|
|
|
|
|
|
|
|
|
or vice versa.
|
|
|
|
|
|
|
|
|
|
Because it acts recursively on all sub-directories of this
|
|
|
|
|
directory it is important not to run it at a directory level
|
|
|
|
|
in which not all projects are to be converted.
|
|
|
|
|
|
|
|
|
|
Building with Visual Studio Express
|
|
|
|
|
===================================
|
|
|
|
|
|
|
|
|
|
If you wish to convert these files for use with VC++ Express,
|
|
|
|
|
you will need to install Python and then run vc9_to_express.py.
|
|
|
|
|
This will create a new directory 'build.vc9x' that will contain
|
|
|
|
|
the project files for VC++ 2008 Express. There will be two errors
|
|
|
|
|
when the solution is loaded because Express cannot handle two
|
|
|
|
|
64-bit projects. But these should not prevent other projects
|
|
|
|
|
in the solution loading. The two unavailable 64-bit projects
|
|
|
|
|
should then be deleted to prevent future loading errors.
|
|
|
|
|
|
2008-05-19 10:56:13 -04:00
|
|
|
|
Building MPIR
|
|
|
|
|
=============
|
2008-05-19 09:37:29 -04:00
|
|
|
|
|
2008-05-19 10:56:13 -04:00
|
|
|
|
The MPIR build is started by opening the Visual Studion C/C++
|
|
|
|
|
solution file 'mpir.sln'.
|
2008-05-19 09:37:29 -04:00
|
|
|
|
|
|
|
|
|
If you wish to convert these files for use with VC++ Express,
|
|
|
|
|
you will need to install Python and then run vc9toxpr.py. This
|
|
|
|
|
will create a new directory 'build.vc9x' that will contain the
|
|
|
|
|
project files for VC++ 2008 Express. If you are using VC++
|
|
|
|
|
Express you must build the projects manually in the following
|
|
|
|
|
order:
|
|
|
|
|
|
2008-05-19 10:56:13 -04:00
|
|
|
|
1. Build gen-mpir first.
|
2008-05-19 09:37:29 -04:00
|
|
|
|
2. the gen-* projects.
|
|
|
|
|
3. Then the remainder as needed.
|
|
|
|
|
|
|
|
|
|
The 64-bit build projects won't be available with VC++ Express.
|
|
|
|
|
|
|
|
|
|
Visual Studiio 2008 can be started for building the 32 or 64 bit
|
2008-05-19 10:56:13 -04:00
|
|
|
|
versions of MPIR by clicking on the mpir.sln file in the build.vc9
|
2008-05-19 09:37:29 -04:00
|
|
|
|
directory. If you wish to use the Intel compiler, you need to
|
2008-05-19 10:56:13 -04:00
|
|
|
|
convert the build files by right clicking on the MPIR top level
|
2008-05-19 09:37:29 -04:00
|
|
|
|
solution and then selecting the conversion option. Before building
|
|
|
|
|
for the first time with the Intel compiler after such a conversion,
|
|
|
|
|
it is advisable to clean all the build projects and to delete any
|
|
|
|
|
files in the build.vc9\Win32 and build.vc9\x64 sub-directories.
|
|
|
|
|
|
2008-05-19 10:56:13 -04:00
|
|
|
|
Before MPIR is built by using the appropriate build projects.
|
2008-05-19 09:37:29 -04:00
|
|
|
|
Select the desired DLL or static library and then set the desired
|
|
|
|
|
configuration:
|
|
|
|
|
|
|
|
|
|
win32 or x64
|
|
|
|
|
release or debug
|
|
|
|
|
|
2008-05-19 10:56:13 -04:00
|
|
|
|
To build the MPIR dynamic link libraries (DLLs) choose one (or more)
|
2008-05-19 09:37:29 -04:00
|
|
|
|
of:
|
|
|
|
|
|
2008-05-19 10:56:13 -04:00
|
|
|
|
dll_mpir_amd64 - MPIR DLL using AMD Athlon assembler (x64)
|
|
|
|
|
dll_mpir_core2 - MPIR DLL using Intel Core2 assembler (x64)
|
|
|
|
|
dll_mpir_gc - MPIR DLL using generic C (win32 & x64)
|
|
|
|
|
dll_mpir_p0 - MPIR DLL using Pentium assembler (win32)
|
|
|
|
|
dll_mpir_p3 - MPIR DLL using Pentium III assembler (win32)
|
|
|
|
|
dll_mpir_p4 - MPIR DLL using Pentium IV assembler (win32)
|
2008-05-19 09:37:29 -04:00
|
|
|
|
|
2008-05-19 10:56:13 -04:00
|
|
|
|
To build MPIR static libraries choose one (or more) of:
|
2008-05-19 09:37:29 -04:00
|
|
|
|
|
2008-05-19 10:56:13 -04:00
|
|
|
|
lib_mpir_amd64 - MPIR library using AMD Athlon assembler (x64)
|
|
|
|
|
lib_mpir_core2 - MPIR library Intel Core2 assembler (x64)
|
|
|
|
|
lib_mpir_gc - MPIR library using generic C (win32 & x64)
|
|
|
|
|
lib_mpir_p0 - MPIR library using Pentium assembler (win32)
|
|
|
|
|
lib_mpir_p3 - MPIR library using Pentium III assembler (win32
|
|
|
|
|
lib_mpir_p4 - MPIR library using Pentium IV assembler (win32)
|
2008-05-19 09:37:29 -04:00
|
|
|
|
|
2008-05-19 10:56:13 -04:00
|
|
|
|
Before any of these libraries is built the appropriate MPIR
|
2008-05-19 09:37:29 -04:00
|
|
|
|
configuration file is automatically copied into config.h. After a
|
|
|
|
|
static library is built its config.h file is copied into the output
|
2008-05-19 10:56:13 -04:00
|
|
|
|
directory; the library and its associated files are then copied to
|
2008-05-19 09:37:29 -04:00
|
|
|
|
the 'lib' sub-directory within the VC++ solution folder (build.vc9).
|
|
|
|
|
Simlarly when a DLL is built, the resulting DLL, its export libraries
|
|
|
|
|
and its debug symbol file are copied to the files gmp.dll, gmp.exp,
|
|
|
|
|
gmp.lib and gmp.pdb within the 'dll' sub-directory.
|
|
|
|
|
|
|
|
|
|
This means that the 'dll' and 'lib' sub-directories respectively
|
2008-05-19 10:56:13 -04:00
|
|
|
|
contain the last MPIR DLLs and static libraries built. These are
|
2008-05-19 09:37:29 -04:00
|
|
|
|
then the libraries used in build any other libraries that are built
|
|
|
|
|
later.
|
|
|
|
|
|
2008-05-19 10:56:13 -04:00
|
|
|
|
The MPIR DLL projects include the C++ files. If you do not want
|
2008-05-19 09:37:29 -04:00
|
|
|
|
these the relevent files needed to be excluded from the DLL(s) you
|
|
|
|
|
build. Go to the 'cpp' subdirectory of their build project in the
|
|
|
|
|
IDE and exclude all the files in this subdirectory from the build
|
|
|
|
|
process.
|
|
|
|
|
|
|
|
|
|
All the DLLs and static libraries are multi-threaded and are
|
|
|
|
|
linked to the multi-threaded Microsoft run-time libraries (DLLs are
|
|
|
|
|
linked to DLL run time libraries and static libraries are linked to
|
|
|
|
|
run time static libraries).
|
|
|
|
|
|
|
|
|
|
Within the 'dll' and 'lib' sub-directories used for output the
|
|
|
|
|
structure is:
|
|
|
|
|
|
|
|
|
|
DLL or LIB
|
|
|
|
|
Win32
|
|
|
|
|
Release
|
|
|
|
|
Debug
|
|
|
|
|
x64
|
|
|
|
|
Release
|
|
|
|
|
Debug
|
|
|
|
|
|
|
|
|
|
in order to enable the appropriate library for the desired target
|
|
|
|
|
platform to be easily located. The individual project sub-
|
|
|
|
|
directories also contain the libraries once they have been built
|
|
|
|
|
(the 'dll' and 'lib' directories are just used to hold the latest
|
|
|
|
|
built versions for linking the tests that are described later).
|
|
|
|
|
|
|
|
|
|
C++ Interface
|
|
|
|
|
=============
|
|
|
|
|
|
2008-05-19 10:56:13 -04:00
|
|
|
|
After a MPIR library has been built, other libraries can be built.
|
|
|
|
|
These always use the last MPIR library (of the same type, static or
|
|
|
|
|
DLL) that has been built. To build the MPIR C+ library wrapper use:
|
2008-05-19 09:37:29 -04:00
|
|
|
|
|
2008-05-19 10:56:13 -04:00
|
|
|
|
lib_mpir_cpp - MPIR C++ wrapper static library (win32 & x64)
|
2008-05-19 09:37:29 -04:00
|
|
|
|
|
|
|
|
|
The Tests
|
|
|
|
|
=========
|
|
|
|
|
|
2008-05-19 10:56:13 -04:00
|
|
|
|
There is a separate solution for the MPIR tests: mpir-tests.sln. In
|
|
|
|
|
Visual Studio 2008 these are in the mpir-tests project folder. These
|
2008-05-19 09:37:29 -04:00
|
|
|
|
tests should be run immediately after the DLL or static library
|
|
|
|
|
under test has been built. Before running the tests it is necessary
|
2008-05-19 10:56:13 -04:00
|
|
|
|
to build the add-test-lib project in the 'mpir tests' solution folder
|
2008-05-19 09:37:29 -04:00
|
|
|
|
(note that the Win32/x64 and Debug/Release configuration built must
|
|
|
|
|
match the intended test configuration).
|
|
|
|
|
|
2008-05-19 10:56:13 -04:00
|
|
|
|
The MPIR tests are all configured using the property file:
|
2008-05-19 09:37:29 -04:00
|
|
|
|
|
|
|
|
|
test-config.vsprops
|
|
|
|
|
|
2008-05-19 10:56:13 -04:00
|
|
|
|
located in the mpir-tests sub-directory. These cover the C and the
|
2008-05-19 09:37:29 -04:00
|
|
|
|
C++ tests for win32 and 64 builds in both release and debug
|
|
|
|
|
configurations. All these property files use an IDE macro named
|
|
|
|
|
$(BinDir) that determines whether the tests are applied to the the
|
|
|
|
|
static LIB or the DLL versions versions of the libraries. The
|
|
|
|
|
default is:
|
|
|
|
|
|
|
|
|
|
$(BinDir) = $(SolutionDir)lib
|
|
|
|
|
|
|
|
|
|
for linking the tests to the static libraries but this can be
|
|
|
|
|
changed to
|
|
|
|
|
|
|
|
|
|
$(BinDir) = $(SolutionDir)dll
|
|
|
|
|
|
|
|
|
|
to link the test to the DLL libraries. A second macro $(LIBS)
|
|
|
|
|
is also needed to set the libaries to be used:
|
|
|
|
|
|
|
|
|
|
$(BinDir)$(PlatformName)\$(ConfigurationName)\gmp.lib
|
|
|
|
|
|
|
|
|
|
for testing the DLL and
|
|
|
|
|
|
|
|
|
|
$(BinDir)$(PlatformName)\$(ConfigurationName)\gmp.lib
|
|
|
|
|
$(BinDir)$(PlatformName)\$(ConfigurationName)\gmpxx.lib
|
|
|
|
|
|
|
|
|
|
for testing the static libraries (enter these with a ' ' between
|
|
|
|
|
them when setting up the macro).
|
|
|
|
|
|
|
|
|
|
Note, however, tha the DLL tests are not useful at the moment
|
2008-05-19 10:56:13 -04:00
|
|
|
|
because they use internal features of MPIR that are not exported
|
2008-05-19 09:37:29 -04:00
|
|
|
|
by the DLLs. Hence they fail to link in almost all cases.
|
|
|
|
|
|
|
|
|
|
There is also another macro, $(TestDir), that specifies where
|
|
|
|
|
the executable test files are placed but changing this will
|
|
|
|
|
prevent the test scripts (see later) from being used.
|
|
|
|
|
|
|
|
|
|
Test Automation
|
|
|
|
|
===============
|
|
|
|
|
|
|
|
|
|
After they have been built the tests cn be run using the
|
2008-05-19 10:56:13 -04:00
|
|
|
|
Python script run-tests.py in the build.vc9\mpir-tests
|
|
|
|
|
directory (build.vc9x\mpir-tests for VC++ express). To
|
2008-05-19 09:37:29 -04:00
|
|
|
|
see the test output the python script should be run in
|
|
|
|
|
a command window from within these sub-directories:
|
|
|
|
|
|
2008-05-19 10:56:13 -04:00
|
|
|
|
cmd>mpir-tests.py
|
2008-05-19 09:37:29 -04:00
|
|
|
|
|
|
|
|
|
and the output can be directed to a file:
|
|
|
|
|
|
2008-05-19 10:56:13 -04:00
|
|
|
|
cmd>mpir-tests.py >out.txt
|
2008-05-19 09:37:29 -04:00
|
|
|
|
|
2008-05-19 10:56:13 -04:00
|
|
|
|
When an MPIR library is built the file 'last_build.txt' is
|
2008-05-19 09:37:29 -04:00
|
|
|
|
written to the buid.vc9 subdirectory giving details of the
|
|
|
|
|
build configuration. These details are then used to run the
|
2008-05-19 10:56:13 -04:00
|
|
|
|
MPIR tests and this means that these tests need to be run
|
2008-05-19 09:37:29 -04:00
|
|
|
|
immediately after the library to be tested has been built.
|
|
|
|
|
It is possible to test a different library by editing
|
|
|
|
|
'last_build.txt' but this will only work if the files in the
|
|
|
|
|
$(BinDir) are correct. In order to avoid errors, it is
|
|
|
|
|
advisable before testing to do a clean build of the library
|
|
|
|
|
under test (to do a completely clean build, the files in
|
|
|
|
|
the build.vc9\Win32 and build.vc9\x64 directories should be
|
|
|
|
|
deleted.
|
|
|
|
|
|
|
|
|
|
Two Tests Fail
|
|
|
|
|
==============
|
|
|
|
|
|
|
|
|
|
The tests for cxx/locale and misc/locale fail to link
|
|
|
|
|
because the test defines a symbol - localeconv - that is
|
|
|
|
|
in the Microsoft runtime libraries. This is not significant
|
2008-05-19 10:56:13 -04:00
|
|
|
|
for MPIR numeric operations.
|
2008-05-19 09:37:29 -04:00
|
|
|
|
|
2008-05-19 10:56:13 -04:00
|
|
|
|
Using MPIR
|
|
|
|
|
==========
|
2008-05-19 09:37:29 -04:00
|
|
|
|
|
2008-05-19 10:56:13 -04:00
|
|
|
|
Applications that use MPIR include the mpir.h header file to provide
|
|
|
|
|
the prototypes for the functions that MPIR provides. Hence when a
|
|
|
|
|
MPIR distribution is being used it is important to ensure that any
|
|
|
|
|
MPIR header file used matches that for the version of MPIR in use.
|
2008-05-19 09:37:29 -04:00
|
|
|
|
|
|
|
|
|
1. Using the Static Libraries
|
|
|
|
|
=============================
|
|
|
|
|
|
2008-05-19 10:56:13 -04:00
|
|
|
|
To build a MPIR C or C++ based application using the the static
|
|
|
|
|
libraries all that needs to be done is to add the MPIR and/or the
|
|
|
|
|
MPIR C++ static libraries to the application build process.
|
2008-05-19 09:37:29 -04:00
|
|
|
|
|
|
|
|
|
It is, of course, important to ensure that any libraries that are
|
|
|
|
|
used have been built for the target platform.
|
|
|
|
|
|
|
|
|
|
2. Using the DLL Export Libraries
|
|
|
|
|
=================================
|
|
|
|
|
|
|
|
|
|
The DLLs built by VC++ use the _cdecl calling convention in
|
|
|
|
|
which exported symbols have their C names prefixed with an
|
|
|
|
|
extra '_' character. Some applications expect the _stdcall
|
|
|
|
|
convention to be used in which there is an underscore prefix
|
|
|
|
|
and a suffix of '@n' where n is the number of bytes used for
|
|
|
|
|
the function arguments on the stack. Such applications will
|
2008-05-19 10:56:13 -04:00
|
|
|
|
need to be modified to work with the MPIR DLLs provided here.
|
|
|
|
|
The alternative of attempting to build MPIR using the _stdcall
|
2008-05-19 09:37:29 -04:00
|
|
|
|
convention is not recommended (and won't work with the
|
|
|
|
|
assembler based builds anyway). This is further complicated
|
|
|
|
|
if the builds for x64 are used since the conventions here are
|
|
|
|
|
different again.
|
|
|
|
|
|
|
|
|
|
There are two ways of linking to a DLL. The first way is to
|
|
|
|
|
use one or more of the DLL export libraries built as described
|
|
|
|
|
earlier (note that these are not the same as static libraries
|
|
|
|
|
although they are used in a similar way when an application
|
|
|
|
|
is built).
|
|
|
|
|
|
|
|
|
|
3. Using the DLL Export Library
|
|
|
|
|
===============================
|
|
|
|
|
|
|
|
|
|
If you intend to use the DLL export libraries in an application
|
|
|
|
|
you need to:
|
|
|
|
|
|
2008-05-19 10:56:13 -04:00
|
|
|
|
a. ensure that the application can locate the MPIR DLLs in
|
2008-05-19 09:37:29 -04:00
|
|
|
|
question when it is run. This involves putting the
|
|
|
|
|
DLL(s) on a recognised directory path.
|
|
|
|
|
|
|
|
|
|
b. define __GMP_LIBGMP_DLL when the application is built
|
2008-05-19 10:56:13 -04:00
|
|
|
|
in order to ensure that MPIR's DLL export symbols are
|
2008-05-19 09:37:29 -04:00
|
|
|
|
properly recognised as such so that they can be
|
2008-05-19 10:56:13 -04:00
|
|
|
|
accessed via the MPIR import library
|
2008-05-19 09:37:29 -04:00
|
|
|
|
|
|
|
|
|
c. link the application to the gmp.lib library that is
|
|
|
|
|
provided with the DLL you intend to use (this is
|
|
|
|
|
produced when the DLL is built)
|
|
|
|
|
|
|
|
|
|
4. Using DLL Dynamic loading
|
|
|
|
|
============================
|
|
|
|
|
|
|
|
|
|
The second way of linking to a DLL is to use dynamic
|
|
|
|
|
loading. This is more complex and will not be discussed
|
|
|
|
|
here. The VC++ documentation describes how to use DLLs in
|
|
|
|
|
this way.
|
|
|
|
|
|
2008-05-19 10:56:13 -04:00
|
|
|
|
5. Using MPIR functions that use FILE's as Input or Output
|
|
|
|
|
==========================================================
|
2008-05-19 09:37:29 -04:00
|
|
|
|
|
|
|
|
|
In Windows the different C runtime libraries each have
|
|
|
|
|
their own stream input/output tables, which means that
|
|
|
|
|
FILE* pointers cannot be passed from one to another. In
|
|
|
|
|
consequence, if an application that is built with one
|
|
|
|
|
library attempts to pass FILE parameters to a DLL that
|
|
|
|
|
is built with another, the FILE parameters will not be
|
|
|
|
|
recognised and the program will fail.
|
|
|
|
|
|
2008-05-19 10:56:13 -04:00
|
|
|
|
It is hence important to build a MPIR application using
|
2008-05-19 09:37:29 -04:00
|
|
|
|
the same run time library as that used to build any
|
|
|
|
|
DLL that is used - in this case the appropriate version
|
|
|
|
|
9 library.
|
|
|
|
|
|
|
|
|
|
If this is not possible, Jim White has made a DLL
|
|
|
|
|
available that will map all stream Input/Output
|
|
|
|
|
functions in a way that ensures that they use the
|
|
|
|
|
correct runtime library.
|
|
|
|
|
|
2008-05-19 10:56:13 -04:00
|
|
|
|
6. MPIR Applications that Require _stdcall Functions
|
|
|
|
|
====================================================
|
2008-05-19 09:37:29 -04:00
|
|
|
|
|
|
|
|
|
Some applications, for example Visual Basic 6, require
|
|
|
|
|
that DLL based functions provide a _stdcall interface,
|
|
|
|
|
whereas the VC++ default for DLLs is _cdecl.
|
|
|
|
|
|
|
|
|
|
To overcome this Jim White intends to make a wrapper
|
2008-05-19 10:56:13 -04:00
|
|
|
|
DLL available for MPIR that provides a _stdcall interface
|
|
|
|
|
to the normal _cdecl MPIR DLLs.
|
2008-05-19 09:37:29 -04:00
|
|
|
|
|
|
|
|
|
ACKNOWLEDGEMENTS
|
|
|
|
|
================
|
|
|
|
|
|
|
|
|
|
My thanks to:
|
|
|
|
|
|
|
|
|
|
1. The GMP team for their work on GMP and the MPFR team for their work on MPFR
|
|
|
|
|
2. Sam Krasnik and Mike Loehr for suggestions on how to improve and correct errors in earlier releases.
|
|
|
|
|
3. Patrick Pelissier, Vincent Lef<65>vre and Paul Zimmermann for helping to resolve VC++ issues in MPFR.
|
|
|
|
|
4. Michael Abshoff and Jim White for agreeing to host the pre-built binaries for GMP on Windows.
|
|
|
|
|
|
2008-11-28 05:44:30 -05:00
|
|
|
|
Brian Gladman, November 2008
|