This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [Fwd: [PATCH] Fix bootstrap when no --with-ppl/--with-cloog [was Re: What precisely is the status of ppl/cloog anyway?]]


Ryan Hill wrote:
> On Wed, 06 May 2009 18:47:37 +0100
> Dave Korn <dave.korn.cygwin@> wrote:
> 
>> Dave Korn wrote:
>>> ChangeLog
>>>
>>> 	* configure.ac ($with_ppl):  Default to no if not supplied.
>>> 	($with_cloog):  Likewise.
>>>
>>>   Assuming it passes bootstrap, 
>> ... and with the obvious correction to the changelog, ...
>>
>>> ok for HEAD?
> 
> Along these lines, when --with-{ppl,cloog} is not specified, could the
> version checking tests for these libraries also be disabled?  Right now, even
> if you say --without-ppl --without-cloog, configure will still test installed
> versions to see if they're recent enough.

  It wouldn't be hard to do, just override ENABLE_CLOOG_CHECK/ENABLE_PPL_CHECK
immediately after their respective AC_ARG_ENABLE tests

if test "${with_ppl}" = "no"; then
  ENABLE_PPL_CHECK=no
fi

etc.  I'm pretty short on cpu cycles to start yet another simultaneous
bootstrap right now, maybe you'd like to give it a whirl?

    cheers,
      DaveK


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]