[Mingw-users] compiling and building GMP library

17 views
Skip to first unread message

Me Myself and I

unread,
Feb 24, 2012, 8:44:04 PM2/24/12
to mingw...@lists.sourceforge.net

I need to compile and build GMP

http://gmplib.org/

from source code and have it working under mingw32.

I have the default install with msys and the developer's version

based on the installer

mingw-get-inst-20110530.exe

The ./configure for GMP tells the that the C preprocessor is failing
a sanity check. 

Is there anyone who can help me update mingw32 so that this configure
finishes, or should I contact the GMP people?

I'm not certain if they could tell me anything about mingw32.

------------------------------------------------------------------------------
Virtualization & Cloud Management Using Capacity Planning
Cloud computing makes use of virtualization - but cloud computing
also focuses on allowing computing to be delivered as a service.
http://www.accelacomm.com/jaw/sfnl/114/51521223/
_______________________________________________
MinGW-users mailing list
MinGW...@lists.sourceforge.net

This list observes the Etiquette found at
http://www.mingw.org/Mailing_Lists.
We ask that you be polite and do the same. Disregard for the list etiquette may cause your account to be moderated.

_______________________________________________
You may change your MinGW Account Options or unsubscribe at:
https://lists.sourceforge.net/lists/listinfo/mingw-users
Also: mailto:mingw-use...@lists.sourceforge.net?subject=unsubscribe

Sisyphus

unread,
Feb 24, 2012, 9:19:48 PM2/24/12
to MinGW Users List

----- Original Message -----
From: "Me Myself and I" <stargate...@live.co.uk>
To: <mingw...@lists.sourceforge.net>
Sent: Saturday, February 25, 2012 12:44 PM
Subject: [Mingw-users] compiling and building GMP library


>
> I need to compile and build GMP
>
> http://gmplib.org/
>
> from source code and have it working under mingw32.
>
> I have the default install with msys and the developer's version
>
> based on the installer
>
> mingw-get-inst-20110530.exe
>
> The ./configure for GMP tells the that the C preprocessor is failing
> a sanity check.

The gmp library usually builds without any fuss in the msys shell.

If you could attach the config.log (from the top level gmp source folder),
that might help us understand what has gone wrong.

Cheers,
Rob

Me Myself and I

unread,
Feb 24, 2012, 10:03:03 PM2/24/12
to mingw...@lists.sourceforge.net

Does this log file help any with what my problem is?
config.log

Sisyphus

unread,
Feb 24, 2012, 11:21:31 PM2/24/12
to MinGW Users List

----- Original Message -----
From: "Me Myself and I"

> Does this log file help any with what my problem is?

Well .. it doesn't help *me* as much as I had hoped, but perhaps someone
else here has some ideas.

The telling difference occurs at 'configure:9244: gcc -std=gnu99 -E
conftest.c' where I get:

configure:9244: gcc -std=gnu99 -E conftest.c
configure:9244: $? = 0

(which means success) but you get:

configure:9244: gcc -std=gnu99 -E conftest.c
configure:9244: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "GNU MP"
| #define PACKAGE_TARNAME "gmp"
| #define PACKAGE_VERSION "5.0.4"
| #define PACKAGE_STRING "GNU MP 5.0.4"
| #define PACKAGE_BUGREPORT "gmp-...@gmplib.org, see
http://gmplib.org/manual/Reporting-Bugs.html"
| #define PACKAGE_URL "http://www.gnu.org/software/gmp/"
| #define PACKAGE "gmp"
| #define VERSION "5.0.4"
| #define WANT_FFT 1
| #define HAVE_HOST_CPU_i686 1
| #define HAVE_SPEED_CYCLECOUNTER 2
| #define HAVE_CALLING_CONVENTIONS 1
| /* end confdefs.h. */
| #ifdef __STDC__
| # include <limits.h>
| #else
| # include <assert.h>
| #endif
| Syntax error

(which means failure - and causes configure to perform some other
speculative commands which also fail - at which point it throws an error.)

Either there's something wrong with your C pre-processor, or there's some
problem in the generation of conftest.c

I suspect it's the latter, but I'm really not sure how best to proceed.
(That "Syntax error" is a bit weird.)

Anyone ?

The installer that I used was
mingw-get-inst-20110802.exe
whereas you used:
mingw-get-inst-20110530.exe

They both install the same msys shell, and the same version of gcc - but
it's possible that an explanation for the difference is to be found therein.

Eli Zaretskii

unread,
Feb 25, 2012, 1:44:16 AM2/25/12
to MinGW Users List
> From: "Sisyphus" <sisy...@optusnet.com.au>
> Date: Sat, 25 Feb 2012 15:21:31 +1100

The "Syntax error" _is_ the clue, IMO. I think it actually says that
cpp is the cause of the problem. Can you tell which cpp.exe is being
picked up by GCC, and whether that cpp.exe is the correct one?

One way to explore this would be to copy the failed test program to a
file, and then run the same GCC command that the configure script used
to see what's going on. If it fails in the same way, add -v to the
GCC switches, and see what it does and where and why it fails.

In any case, like Rob, I had no difficulty building GMP with MSYS and
MinGW. None at all. No tricks are required, just a functional MinGW
installation.

Sisyphus

unread,
Feb 25, 2012, 2:14:26 AM2/25/12
to Eli Zaretskii, MinGW Users List

----- Original Message -----
From: "Eli Zaretskii"

> The "Syntax error" _is_ the clue, IMO. I think it actually says that
> cpp is the cause of the problem. Can you tell which cpp.exe is being
> picked up by GCC

Can that be determined by running 'which cpp.exe' ?
Or is it possible that 'gcc' and 'which' each pick up a different cpp.exe ?

Anyway, for me:
Rob@desktop2 /c/comp/gmp-5.0.4
$ which cpp.exe
/mingw/bin/cpp.exe

For that matter, it mightn't hurt to run 'which gcc.exe', though I see in
the config.log:

COLLECT_GCC=C:\MinGW\bin\gcc.exe

Presumably that indicates that /mingw/bin/gcc.exe is bring used.

Cheers,
Rob

Eli Zaretskii

unread,
Feb 25, 2012, 2:49:02 AM2/25/12
to Sisyphus, mingw...@lists.sourceforge.net
> From: "Sisyphus" <sisy...@optusnet.com.au>
> Date: Sat, 25 Feb 2012 18:14:26 +1100

>
> From: "Eli Zaretskii"
>
> > The "Syntax error" _is_ the clue, IMO. I think it actually says that
> > cpp is the cause of the problem. Can you tell which cpp.exe is being
> > picked up by GCC
>
> Can that be determined by running 'which cpp.exe' ?
> Or is it possible that 'gcc' and 'which' each pick up a different cpp.exe ?

Anything's possible. The way to know is to use the -v switch to GCC,
as I suggested in my message.

But first, I suggest that you try reproducing the same failure you see
in config.log, with the same test program, running GCC from the shell
prompt. That should tell you whether the problem is with cpp.exe or
with something that only rears its ugly head when the MSYS Bash runs
the configure script.

Me Myself and I

unread,
Feb 25, 2012, 2:57:55 AM2/25/12
to gcc-...@gcc.gnu.org, ja...@gcc.gnu.org, mingw...@lists.sourceforge.net


----------------------------------------
> From: stargate...@live.co.uk
> To: el...@gnu.org
> Subject: RE: [Mingw-users] compiling and building GMP library
> Date: Sat, 25 Feb 2012 18:57:02 +1100
>
>
> As per this email lower down, I have tried running ./configure;
>
> again on GMP. I havn't changed anything else except a few export statements
>
> in my .etc/profile file. Another copy of config.log is attached. Does anyone know what to do?
>
> This email suggestes I use the -v switch on gcc. Do I need to change my configure script,
>
> or is this redundant advice?
>
> > Date: Sat, 25 Feb 2012 09:49:02 +0200
> > From: el...@gnu.org
> > To: sisy...@optusnet.com.au
> > CC: mingw...@lists.sourceforge.net


> > Subject: Re: [Mingw-users] compiling and building GMP library
> >

config.log

Eli Zaretskii

unread,
Feb 25, 2012, 3:31:07 AM2/25/12
to Me Myself and I, mingw...@lists.sourceforge.net
> From: Me Myself and I <stargate...@live.co.uk>
> Date: Sat, 25 Feb 2012 18:57:02 +1100

>
> I havn't changed anything else except a few export statements in my
> .etc/profile file.

What exactly did you change?

> configure:9244: gcc -std=gnu99 -E conftest.c
> configure:9244: $? = 1
> configure: failed program was:
> | /* confdefs.h */
> | #define PACKAGE_NAME "GNU MP"
> | #define PACKAGE_TARNAME "gmp"
> | #define PACKAGE_VERSION "5.0.4"
> | #define PACKAGE_STRING "GNU MP 5.0.4"
> | #define PACKAGE_BUGREPORT "gmp-...@gmplib.org, see http://gmplib.org/manual/Reporting-Bugs.html"
> | #define PACKAGE_URL "http://www.gnu.org/software/gmp/"
> | #define PACKAGE "gmp"
> | #define VERSION "5.0.4"
> | #define WANT_FFT 1
> | #define HAVE_HOST_CPU_i686 1
> | #define HAVE_SPEED_CYCLECOUNTER 2
> | #define HAVE_CALLING_CONVENTIONS 1
> | /* end confdefs.h. */
> | #ifdef __STDC__
> | # include <limits.h>
> | #else
> | # include <assert.h>
> | #endif
> | Syntax error

I see now that the "Syntax error" part is not a sign of anything: it
comes from the configure script itself, and is there for a good
reason (read the comments in the script if you want to know more).

So I can only repeat my previous suggestion: copy the above to a file
named conftest.c and run GCC from the shell prompt, exactly as the
script claims to have run it:

gcc -std=gnu99 -E conftest.c

Then look at the output and any error messages you get.

For your reference, when I try this here, I get this output:

# 1 "conftest.c"
# 1 "<built-in>"
# 1 "<command line>"
# 1 "conftest.c"
# 16 "conftest.c"
# 1 "D:/usr/bin/../lib/gcc/mingw32/3.4.2/../../../../include/limits.h" 1 3
# 21 "D:/usr/bin/../lib/gcc/mingw32/3.4.2/../../../../include/limits.h" 3
# 1 "D:/usr/bin/../lib/gcc/mingw32/3.4.2/../../../../include/_mingw.h" 1 3
# 31 "D:/usr/bin/../lib/gcc/mingw32/3.4.2/../../../../include/_mingw.h" 3

# 32 "D:/usr/bin/../lib/gcc/mingw32/3.4.2/../../../../include/_mingw.h" 3
# 22 "D:/usr/bin/../lib/gcc/mingw32/3.4.2/../../../../include/limits.h" 2 3
# 17 "conftest.c" 2

Syntax error

and the exit code is zero.

(Obviously, the "D:/usr/bin" part depends on where GCC is installed,
and will probably be different on your machine.)

Sergio NNX

unread,
Feb 25, 2012, 3:56:39 AM2/25/12
to el...@gnu.org, stargate...@live.co.uk, mingw...@lists.sourceforge.net
Ciao.

I've just built GMP 5.0.4 under MinGW without any problems. I'm using GCC 4.5.2. I can upload the libraries onto SourceForge if required. FYI, you can find GMP 5.0.2 for MinGW here: http://sourceforge.net/projects/gmpmingw/

Cheers.

Sergio.

> Date: Sat, 25 Feb 2012 10:31:07 +0200
> From: el...@gnu.org
> To: stargate...@live.co.uk
> CC: mingw...@lists.sourceforge.net

> Subject: Re: [Mingw-users] compiling and building GMP library
>

Me Myself and I

unread,
Feb 25, 2012, 9:06:15 PM2/25/12
to sfha...@hotmail.com, gcc-...@gcc.gnu.org, ja...@gcc.gnu.org, mingw...@lists.sourceforge.net
I have been referred to http://sourceforge.net/projects/gmpmingw/
for a mingw32 binary version of GMP.

I have the following in my etc/profile file:

export PATH="/home/User/nano":$PATH;
export PATH="/home/User/":$PATH;
export PATH="/home/User/gmp-5.0.2":$PATH;

I need to get the following working:

GMP
MPFR
MPC

I am finding now that

"C preprocessor /lib/cpp  is failing a sanity check." when I attempt to compile MPFR, with the aforementioned binary GMP.

Are there any mingw32 people who know what I need to do to my /lib/cpp to get it behaving better?


From: sfha...@hotmail.com
To: el...@gnu.org; stargate...@live.co.uk
CC: mingw...@lists.sourceforge.net
Subject: RE: [Mingw-users] compiling and building GMP library
Date: Sat, 25 Feb 2012 08:56:39 +0000
config.log

Sisyphus

unread,
Feb 25, 2012, 10:40:18 PM2/25/12
to MinGW Users List, sfha...@hotmail.com, gcc-...@gcc.gnu.org, ja...@gcc.gnu.org

----- Original Message -----
From: "Me Myself and I"

> I am finding now that
>
> "C preprocessor /lib/cpp is failing a sanity check." when I attempt to
> compile MPFR, with the aforementioned binary GMP.
> Are there any mingw32 people who know what I need to do to my /lib/cpp to
> get it behaving better?

I doubt that /lib/cpp even exists. (It doesn't exist for me, afaik.)

The error message is misleading and appears, I think, only because the
*last* attempt that was made to run the preprocessor tried using the
'/lib/cpp' command (which fails).

Your problem is that the command 'gcc -E conftest.c' (found at
'configure:4520:') has failed.
It should succeed - something is broken.

I don't know how to fix your problem, but if you work thru the advice that
Eli provided earlier then you'll probably make good progress.
Or, if you're really lucky, someone who knows exactly what the problem is
might happen along.

Cheers,
Rob

Me Myself and I

unread,
Feb 25, 2012, 11:54:57 PM2/25/12
to gcc-...@gcc.gnu.org, ja...@gcc.gnu.org, mingw...@lists.sourceforge.net

I have installed mingw32 on 64 bit Windows 7 using

mingw-get-inst-20110530.exe

I have been referred to http://sourceforge.net/projects/gmpmingw/
for a mingw32 binary version of GMP.

I have the following in my etc/profile file:

export PATH="/home/User/nano":$PATH;
export PATH="/home/User/":$PATH;
export PATH="/home/User/gmp-5.0.2":$PATH;

I need to get the following working:

GMP
MPFR
MPC

I am finding now that

"C preprocessor /lib/cpp  is failing a sanity check." when I attempt to compile MPFR, with the aforementioned binary GMP.

Are there any mingw32 people who know what I need to do to my /lib/cpp to get it behaving better?

The advice I have so far doesn't help, and I have also installed the default C++ which comes with the exe installer I have.

I'm about to try the cpp from source, but apart from that, is there anyone out there with advice to solve the problem?

config.log

Me Myself and I

unread,
Feb 26, 2012, 12:23:33 AM2/26/12
to gcc-...@gcc.gnu.org, ja...@gcc.gnu.org, mingw...@lists.sourceforge.net

I have installed mingw32 on 64 bit Windows 7 using

mingw-get-inst-20110530.exe

for a mingw32 binary version of GMP.

 I have the following in my etc/profile file:

export PATH="/home/User/nano":$PATH;
export PATH="/home/User/":$PATH;
export PATH="/home/User/gmp-5.0.2":$PATH;

I need to get the following working:

GMP
MPFR
MPC

I am finding now that

"C preprocessor /lib/cpp is failing a sanity check." when I attempt to compile MPFR, with the aforementioned binary GMP.

Are there any mingw32 people who know what I need to do to my /lib/cpp to get it behaving better?

The advice I have so far doesn't help; further complicated that I seem to have a working /bin/cpp already.

What changes do I need to introduce?

config.log

Sergio NNX

unread,
Feb 26, 2012, 2:46:56 AM2/26/12
to stargate...@live.co.uk, mingw...@lists.sourceforge.net
Ciao.

I have built GMP 5.0.4 and MPFR 3.1.0 from source under MinGW with no problem at all. I'm really baffled about this problem! I can send you the libraries if you stuck!


From: stargate...@live.co.uk
To: sfha...@hotmail.com; gcc-...@gcc.gnu.org; ja...@gcc.gnu.org; mingw...@lists.sourceforge.net
Subject: Compiling and building vital libraries.
Date: Sun, 26 Feb 2012 13:06:15 +1100

Eli Zaretskii

unread,
Feb 26, 2012, 11:50:09 AM2/26/12
to MinGW Users List
> From: Me Myself and I <stargate...@live.co.uk>
> Date: Sun, 26 Feb 2012 15:54:57 +1100

>
> Are there any mingw32 people who know what I need to do to my /lib/cpp to get it behaving better?

There's no /lib/cpp in MinGW, so don't waste your time looking for it
or trying to build it. There even isn't a certainty at this point
that the problem you had trying to build GMP was due to the
preprocessor; it could well be something entirely different.

> The advice I have so far doesn't help

Did you try to compile the test program manually, like I suggested?
If you did, what were the results?

If you didn't, please do, as I'm quite sure this is the right way of
finding the root cause for your trouble.

Once again, here are the steps I suggest, with some more details this
time:

. Copy the offending test program to a file named conftest.c. For
your convenience, I attach the file's contents at the end of this
message.

. Open a Windows Command Prompt window (note: NOT the MSYS shell
window! the "normal" Command Prompt window with the default Windows
shell, cmd.exe.

. Go to the directory where you put conftest.c and type these
commands:

gcc -std=gnu99 -E conftest.c
echo %ERRORLEVEL%

. The second command must be typed immediately after the first.

. Copy/paste the output into a mail message and post the results
here.

Here's the test program again, just copy text between the two "----"
dividers and save to a file:

---------------------------------------------


/* confdefs.h */
#define PACKAGE_NAME "GNU MP"
#define PACKAGE_TARNAME "gmp"
#define PACKAGE_VERSION "5.0.4"
#define PACKAGE_STRING "GNU MP 5.0.4"
#define PACKAGE_BUGREPORT "gmp-...@gmplib.org, see http://gmplib.org/manual/Reporting-Bugs.html"
#define PACKAGE_URL "http://www.gnu.org/software/gmp/"
#define PACKAGE "gmp"
#define VERSION "5.0.4"
#define WANT_FFT 1
#define HAVE_HOST_CPU_i686 1
#define HAVE_SPEED_CYCLECOUNTER 2
#define HAVE_CALLING_CONVENTIONS 1
/* end confdefs.h. */
#ifdef __STDC__
# include <limits.h>
#else
# include <assert.h>
#endif
Syntax error

---------------------------------------------

Me Myself and I

unread,
Feb 26, 2012, 7:06:36 PM2/26/12
to sfha...@hotmail.com, gcc-...@gcc.gnu.org, ja...@gcc.gnu.org, mingw...@lists.sourceforge.net

Many thanks for the library files!

I have solved my previous problem, and have reinstalled

an operable version of mingw32.


The library files appear to be ok, however I find that my ./configure;

on my gcc source code (with gcc-java source inside it)

still fails with a similar stated error error, apparently halting with

the message that I don't have the correct version of gmp.h.  Even though

my gmp.h directory is now referenced in $PATH.

I still get the message that I'm missing

GMP,MPFR,MPC libraries even though I'm not.

What is happening?


________________________________
> From: sfha...@hotmail.com
> To: stargate...@live.co.uk
> Subject: RE: Compiling and building vital libraries.
> Date: Sun, 26 Feb 2012 13:13:41 +0000
>
> Hi there,
>
> Find attached GMP, MPFR & MPC binaries for MinGW x86. Please, let me if
> they're ok after you try them!
>
> Sergio.
>
> PS: Do you mind telling us your name and where you're based?
>
> > From: stargate...@live.co.uk
> > To: sfha...@hotmail.com
> > Subject: RE: Compiling and building vital libraries.
> > Date: Sun, 26 Feb 2012 21:22:59 +1100
> >
> >
> >
> //-------------------------------------------------------------------------------------------------------
> > Yes, please!
> >
> > Could I have a compiled mingw32 binary for:
> >
> > -GMP 4.2+
> > -MPFR 2.3.1+
> > -MPC 0.8.0+ (particularly if you have it)?
> >
> > And by the way, do you know if these behave any differently ing
> MINGW-64? I'm only asking if you know!
> >
> >
> //-------------------------------------------------------------------------------------------------------
> > From: sfha...@hotmail.com
> > To: stargate...@live.co.uk
> > CC: mingw...@lists.sourceforge.net
> > Subject: RE: Compiling and building vital libraries.
> > Date: Sun, 26 Feb 2012 07:46:56 +0000

> >
> > Ciao.
> >
> > I have built GMP 5.0.4 and MPFR 3.1.0 from source under MinGW with no
> problem at all. I'm really baffled about this problem! I can send you
> the libraries if you stuck!
> >

> > From: stargate...@live.co.uk
> > To: sfha...@hotmail.com; gcc-...@gcc.gnu.org; ja...@gcc.gnu.org;
> mingw...@lists.sourceforge.net
> > Subject: Compiling and building vital libraries.
> > Date: Sun, 26 Feb 2012 13:06:15 +1100
> >
> > I have been referred to http://sourceforge.net/projects/gmpmingw/
> > for a mingw32 binary version of GMP.
> >
> > I have the following in my etc/profile file:
> >
> > export PATH="/home/User/nano":$PATH;
> > export PATH="/home/User/":$PATH;
> > export PATH="/home/User/gmp-5.0.2":$PATH;
> >
> > I need to get the following working:
> >
> > GMP
> > MPFR
> > MPC
> >
> > I am finding now that
> >
> > "C preprocessor /lib/cpp is failing a sanity check." when I attempt
> to compile MPFR, with the aforementioned binary GMP.
> >
> > Are there any mingw32 people who know what I need to do to my
> /lib/cpp to get it behaving better?
> >

config.log

Me Myself and I

unread,
Feb 26, 2012, 9:45:37 PM2/26/12
to gcc-...@gcc.gnu.org, ja...@gcc.gnu.org, mingw...@lists.sourceforge.net
I have read the documentation that says I need to be outside
the code directory for configure, and I still get failure

./../gcc-4.6.2/configure --enable-languages=java --with-gmp=/home/User/math-libs-mingw32/bin/
--with-mpfr=/home/User/math-libs-mingw32/bin/ --with-mpc=/home/User/math-libs-mingw32/bin/;


Is my new log file any help?

> Date: Mon, 27 Feb 2012 01:44:21 +0000
> Subject: Re: Compiling and building vital libraries.
> From: jwake...@gmail.com
> To: stargate...@live.co.uk
> CC: sfha...@hotmail.com; gcc-...@gcc.gnu.org; ja...@gcc.gnu.org; mingw...@lists.sourceforge.net

>
> On 27 February 2012 00:06, Me Myself and I wrote:
> >
> > Many thanks for the library files!
> >
> > I have solved my previous problem, and have reinstalled
> >
> > an operable version of mingw32.
> >
> >
> > The library files appear to be ok, however I find that my ./configure;
> >
> > on my gcc source code (with gcc-java source inside it)
>
> Despite me giving you the link several times you apparently haven't
> read http://gcc.gnu.org/wiki/InstallingGCC or you would know not to
> run ./configure

>
> > still fails with a similar stated error error, apparently halting with
> >
> > the message that I don't have the correct version of gmp.h.  Even though
> >
> > my gmp.h directory is now referenced in $PATH.
>
> $PATH is used for finding executables, not libraries and headers.

>
> > I still get the message that I'm missing
> >
> > GMP,MPFR,MPC libraries even though I'm not.
> >
> > What is happening?
>
> You didn't use --with-gmp etc.
>
> Have you bothered to read *any* of the docs I've suggested?
config.log

Earnie Boyd

unread,
Feb 27, 2012, 8:29:16 AM2/27/12
to MinGW Users List
On Fri, Feb 24, 2012 at 8:44 PM, Me Myself and I wrote:
>
> I need to compile and build GMP
>
> http://gmplib.org/
>

Do you have an antivirus software active? You need to tell it not to
do active checking of your build directory. It will cause configure
to fail when it should succeed since the configure script will not be
able to delete files that are open by the antivirus program.

--
Earnie
-- https://sites.google.com/site/earnieboyd

------------------------------------------------------------------------------
Try before you buy = See our experts in action!
The most comprehensive online learning library for Microsoft developers
is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
Metro Style Apps, more. Free future releases when you subscribe now!
http://p.sf.net/sfu/learndevnow-dev2

Me Myself and I

unread,
Feb 28, 2012, 7:03:52 PM2/28/12
to mingw...@lists.sourceforge.net

//------------------------------------------------------------------------------------------
I have indeed turned off my firewall for a while,
and have successfully completed

./contrib/download_prerequisites;

which gives me

gmp
mpfr
mpc

directories. However, these 3 new directories are source code directories, which need the

./configure; make; make check; install;

treatment.

I find that I can't compile gmp, because it tells me eventually:

configure: error: cannot determine how to define a 32 bit word

How can I get past this error?

//------------------------------------------------------------------------------------------

Reply all
Reply to author
Forward
0 new messages