Re: [PATCH 00/12] Reduce conditional compilation

2015-04-22 Thread Jeff Law
On 04/22/2015 02:46 PM, Trevor Saunders wrote: yeah, its irritated me on a number of occasions too. I'd really like it if building config-list.mk could be faster, but that's a much bigger project, but at least if everything is target hooks maybe ccache can kick in some. I don't see ccache kickin

Re: [PATCH 00/12] Reduce conditional compilation

2015-04-22 Thread Trevor Saunders
On Wed, Apr 22, 2015 at 12:36:58PM -0600, Jeff Law wrote: > On 04/22/2015 12:13 PM, David Malcolm wrote: > > > > >Conditional compilation was a major PITA when doing the rtx->rtx_insn * > >work last year, so I'm very pleased to see these cleanups go in. > Yup. It also got in Andrew's way last yea

Re: [PATCH 00/12] Reduce conditional compilation

2015-04-22 Thread Jeff Law
On 04/22/2015 12:13 PM, David Malcolm wrote: Conditional compilation was a major PITA when doing the rtx->rtx_insn * work last year, so I'm very pleased to see these cleanups go in. Yup. It also got in Andrew's way last year and we regularly see cases where small patches which work fine on th

Re: [PATCH 00/12] Reduce conditional compilation

2015-04-22 Thread David Malcolm
On Tue, 2015-04-21 at 11:29 -0400, Trevor Saunders wrote: > On Tue, Apr 21, 2015 at 07:57:19AM -0600, Jeff Law wrote: > > On 04/21/2015 07:24 AM, tbsaunde+...@tbsaunde.org wrote: > > >From: Trevor Saunders > > > > > >Hi, > > > > > >This is a first round of patches to reduce the amount of code with

Re: [PATCH 00/12] Reduce conditional compilation

2015-04-21 Thread Trevor Saunders
On Tue, Apr 21, 2015 at 07:57:19AM -0600, Jeff Law wrote: > On 04/21/2015 07:24 AM, tbsaunde+...@tbsaunde.org wrote: > >From: Trevor Saunders > > > >Hi, > > > >This is a first round of patches to reduce the amount of code with in #if / > >#ifdef. This makes it incrementally easier to not break co

Re: [PATCH 00/12] Reduce conditional compilation

2015-04-21 Thread Jeff Law
On 04/21/2015 07:24 AM, tbsaunde+...@tbsaunde.org wrote: From: Trevor Saunders Hi, This is a first round of patches to reduce the amount of code with in #if / #ifdef. This makes it incrementally easier to not break configs other than the one being built, and moves things slightly closer to us

Re: [PATCH 00/12] Reduce conditional compilation

2015-04-21 Thread Jeff Law
On 04/21/2015 07:24 AM, tbsaunde+...@tbsaunde.org wrote: From: Trevor Saunders Hi, This is a first round of patches to reduce the amount of code with in #if / #ifdef. This makes it incrementally easier to not break configs other than the one being built, and moves things slightly closer to us

[PATCH 00/12] Reduce conditional compilation

2015-04-21 Thread tbsaunde+gcc
From: Trevor Saunders Hi, This is a first round of patches to reduce the amount of code with in #if / #ifdef. This makes it incrementally easier to not break configs other than the one being built, and moves things slightly closer to using target hooks for everything. each commit bootstrapped