Re: [Qemu-devel] How to split vl.h

2007-11-04 Thread Thiemo Seufer
Paul Brook wrote: > > > I not sure a single hw/hw.h file will give any benefit because there's a > > > fair amount of interfacing between the target devices emulation and the > > > host side interaction code. i.e. there's not much that's only used inside > > > hw/. hw/ is about as big as most of th

Re: [Qemu-devel] How to split vl.h

2007-11-04 Thread Paul Brook
> > I not sure a single hw/hw.h file will give any benefit because there's a > > fair amount of interfacing between the target devices emulation and the > > host side interaction code. i.e. there's not much that's only used inside > > hw/. hw/ is about as big as most of the rest of qemu put togethe

Re: [Qemu-devel] How to split vl.h

2007-11-04 Thread J. Mayer
On Sun, 2007-11-04 at 17:54 +, Paul Brook wrote: > On Sunday 04 November 2007, J. Mayer wrote: > > On Sun, 2007-11-04 at 12:17 +, Paul Brook wrote: > > > > I have another solution: include all architecture specific files from > > > > the main file. > > > > > > I'd really rather not do this

Re: [Qemu-devel] How to split vl.h

2007-11-04 Thread Thiemo Seufer
Blue Swirl wrote: > On 11/1/07, Fabrice Bellard <[EMAIL PROTECTED]> wrote: > > Blue Swirl wrote: > > > Hi, > > > > > > With the automatic dependency rule installed, modifying vl.h causes > > > all files to be recompiled. This is of course the correct action, but > > > it's a major slowdown for deve

Re: [Qemu-devel] How to split vl.h

2007-11-04 Thread Paul Brook
On Sunday 04 November 2007, J. Mayer wrote: > On Sun, 2007-11-04 at 12:17 +, Paul Brook wrote: > > > I have another solution: include all architecture specific files from > > > the main file. > > > > I'd really rather not do this. I doubt it's going to be a win, as now you > > have to recompile

Re: [Qemu-devel] How to split vl.h

2007-11-04 Thread J. Mayer
On Sun, 2007-11-04 at 12:17 +, Paul Brook wrote: > > I have another solution: include all architecture specific files from > > the main file. > > I'd really rather not do this. I doubt it's going to be a win, as now you > have > to recompile the whole thing every time you change the implemen

Re: [Qemu-devel] How to split vl.h

2007-11-04 Thread Paul Brook
> I have another solution: include all architecture specific files from > the main file. I'd really rather not do this. I doubt it's going to be a win, as now you have to recompile the whole thing every time you change the implementation. At least with vl.h you only have to recompile when you ch

Re: [Qemu-devel] How to split vl.h

2007-11-04 Thread Blue Swirl
On 11/1/07, Fabrice Bellard <[EMAIL PROTECTED]> wrote: > Blue Swirl wrote: > > Hi, > > > > With the automatic dependency rule installed, modifying vl.h causes > > all files to be recompiled. This is of course the correct action, but > > it's a major slowdown for development too. > > There must be a

Re: [Qemu-devel] How to split vl.h

2007-11-01 Thread andrzej zaborowski
Hi, On 01/11/2007, Stefan Weil <[EMAIL PROTECTED]> wrote: > Fabrice Bellard schrieb: > > Blue Swirl wrote: > >> Hi, > >> > >> With the automatic dependency rule installed, modifying vl.h causes > >> all files to be recompiled. This is of course the correct action, but > >> it's a major slowdown fo

Re: [Qemu-devel] How to split vl.h

2007-11-01 Thread Stefan Weil
Fabrice Bellard schrieb: > Blue Swirl wrote: >> Hi, >> >> With the automatic dependency rule installed, modifying vl.h causes >> all files to be recompiled. This is of course the correct action, but >> it's a major slowdown for development too. > There must be an option in the Makefile to disable t

Re: [Qemu-devel] How to split vl.h

2007-11-01 Thread Fabrice Bellard
Blue Swirl wrote: > Hi, > > With the automatic dependency rule installed, modifying vl.h causes > all files to be recompiled. This is of course the correct action, but > it's a major slowdown for development too. There must be an option in the Makefile to disable the automatic dependency check.

Re: [Qemu-devel] How to split vl.h

2007-10-31 Thread Thiemo Seufer
Blue Swirl wrote: > Hi, > > With the automatic dependency rule installed, modifying vl.h causes > all files to be recompiled. This is of course the correct action, but > it's a major slowdown for development too. > > How should we split vl.h into smaller pieces? Give each device a > header file,

Re: [Qemu-devel] How to split vl.h

2007-10-31 Thread Jocelyn Mayer
On Wed, 2007-10-31 at 20:12 +0200, Blue Swirl wrote: > Hi, Hi, > With the automatic dependency rule installed, modifying vl.h causes > all files to be recompiled. This is of course the correct action, but > it's a major slowdown for development too. > > How should we split vl.h into smaller pie

[Qemu-devel] How to split vl.h

2007-10-31 Thread Blue Swirl
Hi, With the automatic dependency rule installed, modifying vl.h causes all files to be recompiled. This is of course the correct action, but it's a major slowdown for development too. How should we split vl.h into smaller pieces? Give each device a header file, like m48t59? What about other stuf