summaryrefslogtreecommitdiff
path: root/demos/perl
diff options
context:
space:
mode:
authorKevin Ryde <user42@zip.com.au>2004-04-12 01:21:07 +0200
committerKevin Ryde <user42@zip.com.au>2004-04-12 01:21:07 +0200
commit0236fb1a3e98a598696c60e50c662f18649e418b (patch)
tree766a86bdea8ffe47ad2ef3b1c108c50ddd834795 /demos/perl
parent97928f06d22d24475e15b1da77ae9d276cccee3d (diff)
downloadgmp-0236fb1a3e98a598696c60e50c662f18649e418b.tar.gz
* demos/perl/GMP.xs (static_functable): New macro, use it for all
function tables, to support mingw DLL builds. * demos/perl/INSTALL (NOTES FOR PARTICULAR SYSTEMS): Remove note on DLLs, should be ok now.
Diffstat (limited to 'demos/perl')
-rw-r--r--demos/perl/INSTALL14
1 files changed, 1 insertions, 13 deletions
diff --git a/demos/perl/INSTALL b/demos/perl/INSTALL
index a861f8631..8f64437fe 100644
--- a/demos/perl/INSTALL
+++ b/demos/perl/INSTALL
@@ -1,4 +1,4 @@
-Copyright 2001, 2003 Free Software Foundation, Inc.
+Copyright 2001, 2003, 2004 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
@@ -77,15 +77,3 @@ Once installed, programs using the GMP module become simply
And the documentation read directly too
man GMP
-
-
-
-NOTES FOR PARTICULAR SYSTEMS
-
-On Mingw or Cygwin with a DLL build of GMP, the array initializers in
-GMP.xs fail to compile, due to being function pointers coming from a
-DLL and hence not constants. This is a problem for all such code,
-perhaps GCC will address this itself one day. For now the suggestion
-is to build the main libgmp static, or it might work to compile GMP.xs
-as C++ using for instance "make CC=g++". (In C++, non-constant
-initializers are allowed.)