> On Thu Jan 24 10:31:46 2008, coke wrote: > > > > > Here's my current Config script: > > > > CCACHE="ccache " > > CC="${CCACHE}gcc-4.0" > > CX="${CCACHE}g++-4.0" > > perl Configure.pl --cc="$CC" --cxx="$CX" --link="$CX" --ld="$CX" > > --ccflags="-L/opt/local/lib -I/opt/local/include" > > --ldflags="-L/opt/local/lib" --verbose-step=auto::gmp $@ > > > > Running this step verbosely shows as the attached. Notice that the > > flags that I specified on the command line for Configure for > > cclflags/ldflags are missing, so the build fails, and GMP is reported > > as not available.
This sounds like a problem in the hints file. I don't know what platform this is, but I'd look in the hints file to see if it unconditionally sets ccflags and ldflags without checking the command line options. On Thu, 24 Jan 2008, James Keenan via RT wrote: > *without* GMP on Darwin. Here's my regular script (with configuration > step tests): > > #!/bin/sh > CC="/usr/bin/gcc-3.3" > CX="/usr/bin/g++-3.3" > /usr/local/bin/perl Configure.pl --cc="$CC" --cxx="$CX" --link="$CX" \ > --ld="$CX" --without-icu --without-gmp \ > --test \ > --configure_trace \ > $@ Note that this test doesn't try setting ccflags or ldflags, so it is irrelevant to the problem at hand. -- Andy Dougherty [EMAIL PROTECTED]