Re: [kvm-devel] [PATCH] [2/2] Split arch specific makefile code out

2007-10-07 Thread Jerone Young
On Sun, 2007-10-07 at 13:50 +0200, Avi Kivity wrote: > Jerone Young wrote: > > This patch makes things better for cross compiling. It also makes adding > > a new architecture to the current make system much easier. > > > > > +CFLAGS += -I $(KERNELDIR)/include $(autodepend-flags) -g > > -fomit-

Re: [kvm-devel] [PATCH] [2/2] Split arch specific makefile code out

2007-10-07 Thread Avi Kivity
Jerone Young wrote: > This patch makes things better for cross compiling. It also makes adding > a new architecture to the current make system much easier. > > +CFLAGS += -I $(KERNELDIR)/include $(autodepend-flags) -g > -fomit-frame-pointer \ > + -Wall > +CFLAGS += -m32 > +CFLAGS += -m64 >

[kvm-devel] [PATCH] [2/2] Split arch specific makefile code out

2007-10-02 Thread Jerone Young
This patch makes things better for cross compiling. It also makes adding a new architecture to the current make system much easier. Signed-off-by: Jerone Young <[EMAIL PROTECTED]> diff --git a/user/Makefile b/user/Makefile index 26eb530..9567e8f 100644 --- a/user/Makefile +++ b/user/Makefile @@