qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH] Makefile: Fix build breakage
@ 2013-04-28 18:04 Dunrong Huang
  2013-04-29  8:19 ` Paolo Bonzini
  0 siblings, 1 reply; 5+ messages in thread
From: Dunrong Huang @ 2013-04-28 18:04 UTC (permalink / raw)
  To: qemu-devel; +Cc: Blue Swirl, Peter Crosthwaite

The following error occurs when building dtc module:

	CHK version_gen.h
	 CC libfdt/fdt.o
cc1: error: dtc: No such file or directory [-Werror]
cc1: all warnings being treated as errors
make[1]: *** [libfdt/fdt.o] Error 1
make: *** [subdir-dtc] Error 2

In rules.mak, "-I$(<D) -I$(@D)" was expanded to "-Idtc -I." when
building submodule dct. Due to the using of "-Wmissing-include-dirs,
a warning would be rarsed. To avoid it, use dtc as the first prerequisite
so that "$(^D)" was expanded to "."

Cc: Peter Crosthwaite <peter.crosthwaite@xilinx.com>
Cc: Blue Swirl <blauwirbel@gmail.com>
Signed-off-by: Dunrong Huang <riegamaths@gmail.com>
---
 Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Makefile b/Makefile
index 8aca92f..64b0b1b 100644
--- a/Makefile
+++ b/Makefile
@@ -148,7 +148,7 @@ $(SRC_PATH)/pixman/configure:
 DTC_MAKE_ARGS=-I$(SRC_PATH)/dtc VPATH=$(SRC_PATH)/dtc -C dtc V="$(V)" LIBFDT_srcdir=$(SRC_PATH)/dtc/libfdt
 DTC_CFLAGS=$(CFLAGS) $(QEMU_CFLAGS) -I$(BUILD_DIR)/dtc -I$(SRC_PATH)/dtc -I$(SRC_PATH)/dtc/libfdt
 
-subdir-dtc:dtc/libfdt dtc/tests
+subdir-dtc:dtc dtc/libfdt dtc/tests
 	$(call quiet-command,$(MAKE) $(DTC_MAKE_ARGS) CFLAGS="$(DTC_CFLAGS)" LDFLAGS="$(LDFLAGS)" ARFLAGS="$(ARFLAGS)" CC="$(CC)" AR="$(AR)" LD="$(LD)" $(SUBDIR_MAKEFLAGS) libfdt/libfdt.a,)
 
 dtc/%:
-- 
1.8.1.5

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [Qemu-devel] [PATCH] Makefile: Fix build breakage
  2013-04-28 18:04 [Qemu-devel] [PATCH] Makefile: Fix build breakage Dunrong Huang
@ 2013-04-29  8:19 ` Paolo Bonzini
  2013-04-29 13:33   ` Dunrong Huang
  0 siblings, 1 reply; 5+ messages in thread
From: Paolo Bonzini @ 2013-04-29  8:19 UTC (permalink / raw)
  To: Dunrong Huang; +Cc: Blue Swirl, Peter Crosthwaite, qemu-devel

Il 28/04/2013 20:04, Dunrong Huang ha scritto:
> The following error occurs when building dtc module:
> 
> 	CHK version_gen.h
> 	 CC libfdt/fdt.o
> cc1: error: dtc: No such file or directory [-Werror]
> cc1: all warnings being treated as errors
> make[1]: *** [libfdt/fdt.o] Error 1
> make: *** [subdir-dtc] Error 2
> 
> In rules.mak, "-I$(<D) -I$(@D)" was expanded to "-Idtc -I." when
> building submodule dct. Due to the using of "-Wmissing-include-dirs,
> a warning would be rarsed. To avoid it, use dtc as the first prerequisite
> so that "$(^D)" was expanded to "."
> 
> Cc: Peter Crosthwaite <peter.crosthwaite@xilinx.com>
> Cc: Blue Swirl <blauwirbel@gmail.com>
> Signed-off-by: Dunrong Huang <riegamaths@gmail.com>
> ---
>  Makefile | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/Makefile b/Makefile
> index 8aca92f..64b0b1b 100644
> --- a/Makefile
> +++ b/Makefile
> @@ -148,7 +148,7 @@ $(SRC_PATH)/pixman/configure:
>  DTC_MAKE_ARGS=-I$(SRC_PATH)/dtc VPATH=$(SRC_PATH)/dtc -C dtc V="$(V)" LIBFDT_srcdir=$(SRC_PATH)/dtc/libfdt
>  DTC_CFLAGS=$(CFLAGS) $(QEMU_CFLAGS) -I$(BUILD_DIR)/dtc -I$(SRC_PATH)/dtc -I$(SRC_PATH)/dtc/libfdt
>  
> -subdir-dtc:dtc/libfdt dtc/tests
> +subdir-dtc:dtc dtc/libfdt dtc/tests
>  	$(call quiet-command,$(MAKE) $(DTC_MAKE_ARGS) CFLAGS="$(DTC_CFLAGS)" LDFLAGS="$(LDFLAGS)" ARFLAGS="$(ARFLAGS)" CC="$(CC)" AR="$(AR)" LD="$(LD)" $(SUBDIR_MAKEFLAGS) libfdt/libfdt.a,)
>  
>  dtc/%:
> 

Does it work if the "-I$(<D) -I$(@D)" is added to QEMU_INCLUDES instead
of QEMU_CFLAGS?

Paolo

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [Qemu-devel] [PATCH] Makefile: Fix build breakage
  2013-04-29  8:19 ` Paolo Bonzini
@ 2013-04-29 13:33   ` Dunrong Huang
  2013-04-29 14:22     ` Paolo Bonzini
  2013-04-29 23:58     ` Peter Crosthwaite
  0 siblings, 2 replies; 5+ messages in thread
From: Dunrong Huang @ 2013-04-29 13:33 UTC (permalink / raw)
  To: Paolo Bonzini; +Cc: Blue Swirl, Peter Crosthwaite, qemu-devel

[-- Attachment #1: Type: text/plain, Size: 2173 bytes --]

On Mon, Apr 29, 2013 at 4:19 PM, Paolo Bonzini <pbonzini@redhat.com> wrote:

> Il 28/04/2013 20:04, Dunrong Huang ha scritto:
> > The following error occurs when building dtc module:
> >
> >       CHK version_gen.h
> >        CC libfdt/fdt.o
> > cc1: error: dtc: No such file or directory [-Werror]
> > cc1: all warnings being treated as errors
> > make[1]: *** [libfdt/fdt.o] Error 1
> > make: *** [subdir-dtc] Error 2
> >
> > In rules.mak, "-I$(<D) -I$(@D)" was expanded to "-Idtc -I." when
> > building submodule dct. Due to the using of "-Wmissing-include-dirs,
> > a warning would be rarsed. To avoid it, use dtc as the first prerequisite
> > so that "$(^D)" was expanded to "."
> >
> > Cc: Peter Crosthwaite <peter.crosthwaite@xilinx.com>
> > Cc: Blue Swirl <blauwirbel@gmail.com>
> > Signed-off-by: Dunrong Huang <riegamaths@gmail.com>
> > ---
> >  Makefile | 2 +-
> >  1 file changed, 1 insertion(+), 1 deletion(-)
> >
> > diff --git a/Makefile b/Makefile
> > index 8aca92f..64b0b1b 100644
> > --- a/Makefile
> > +++ b/Makefile
> > @@ -148,7 +148,7 @@ $(SRC_PATH)/pixman/configure:
> >  DTC_MAKE_ARGS=-I$(SRC_PATH)/dtc VPATH=$(SRC_PATH)/dtc -C dtc V="$(V)"
> LIBFDT_srcdir=$(SRC_PATH)/dtc/libfdt
> >  DTC_CFLAGS=$(CFLAGS) $(QEMU_CFLAGS) -I$(BUILD_DIR)/dtc
> -I$(SRC_PATH)/dtc -I$(SRC_PATH)/dtc/libfdt
> >
> > -subdir-dtc:dtc/libfdt dtc/tests
> > +subdir-dtc:dtc dtc/libfdt dtc/tests
> >       $(call quiet-command,$(MAKE) $(DTC_MAKE_ARGS)
> CFLAGS="$(DTC_CFLAGS)" LDFLAGS="$(LDFLAGS)" ARFLAGS="$(ARFLAGS)" CC="$(CC)"
> AR="$(AR)" LD="$(LD)" $(SUBDIR_MAKEFLAGS) libfdt/libfdt.a,)
> >
> >  dtc/%:
> >
>
> Does it work if the "-I$(<D) -I$(@D)" is added to QEMU_INCLUDES instead
> of QEMU_CFLAGS?
>
Yes,  this way works for me.

diff --git a/rules.mak b/rules.mak
index 292a422..2572070 100644
--- a/rules.mak
+++ b/rules.mak
@@ -15,7 +15,7 @@ MAKEFLAGS += -rR
 QEMU_DGFLAGS += -MMD -MP -MT $@ -MF $(*D)/$(*F).d

 # Same as -I$(SRC_PATH) -I., but for the nested source/object directories
-QEMU_CFLAGS += -I$(<D) -I$(@D)
+QEMU_INCLUDES += -I$(<D) -I$(@D)

but I don't know if it will break other build, e.g. mingw build.

>
> Paolo
>



-- 
Best Regards,

Dunrong Huang

[-- Attachment #2: Type: text/html, Size: 3540 bytes --]

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [Qemu-devel] [PATCH] Makefile: Fix build breakage
  2013-04-29 13:33   ` Dunrong Huang
@ 2013-04-29 14:22     ` Paolo Bonzini
  2013-04-29 23:58     ` Peter Crosthwaite
  1 sibling, 0 replies; 5+ messages in thread
From: Paolo Bonzini @ 2013-04-29 14:22 UTC (permalink / raw)
  To: Dunrong Huang; +Cc: Blue Swirl, Peter Crosthwaite, qemu-devel

Il 29/04/2013 15:33, Dunrong Huang ha scritto:
> 
> Yes,  this way works for me.
> 
> diff --git a/rules.mak b/rules.mak
> index 292a422..2572070 100644
> --- a/rules.mak
> +++ b/rules.mak
> @@ -15,7 +15,7 @@ MAKEFLAGS += -rR
>  QEMU_DGFLAGS += -MMD -MP -MT $@ -MF $(*D)/$(*F).d
>  
>  # Same as -I$(SRC_PATH) -I., but for the nested source/object directories
> -QEMU_CFLAGS += -I$(<D) -I$(@D)
> +QEMU_INCLUDES += -I$(<D) -I$(@D)
> 
> but I don't know if it will break other build, e.g. mingw build.

Please submit it, it is a better fix.  Make sure you put "1.5" in the
subject.

Paolo

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [Qemu-devel] [PATCH] Makefile: Fix build breakage
  2013-04-29 13:33   ` Dunrong Huang
  2013-04-29 14:22     ` Paolo Bonzini
@ 2013-04-29 23:58     ` Peter Crosthwaite
  1 sibling, 0 replies; 5+ messages in thread
From: Peter Crosthwaite @ 2013-04-29 23:58 UTC (permalink / raw)
  To: Dunrong Huang; +Cc: Blue Swirl, Paolo Bonzini, qemu-devel, sorenb

Hi Dunrong, Paolo,

Managed to replicate using Ubuntu 12.04,

On Mon, Apr 29, 2013 at 11:33 PM, Dunrong Huang <riegamaths@gmail.com> wrote:
>
>
>
> On Mon, Apr 29, 2013 at 4:19 PM, Paolo Bonzini <pbonzini@redhat.com> wrote:
>>
>> Il 28/04/2013 20:04, Dunrong Huang ha scritto:
>> > The following error occurs when building dtc module:
>> >
>> >       CHK version_gen.h
>> >        CC libfdt/fdt.o
>> > cc1: error: dtc: No such file or directory [-Werror]
>> > cc1: all warnings being treated as errors
>> > make[1]: *** [libfdt/fdt.o] Error 1
>> > make: *** [subdir-dtc] Error 2
>> >
>> > In rules.mak, "-I$(<D) -I$(@D)" was expanded to "-Idtc -I." when
>> > building submodule dct. Due to the using of "-Wmissing-include-dirs,
>> > a warning would be rarsed. To avoid it, use dtc as the first
>> > prerequisite
>> > so that "$(^D)" was expanded to "."
>> >
>> > Cc: Peter Crosthwaite <peter.crosthwaite@xilinx.com>
>> > Cc: Blue Swirl <blauwirbel@gmail.com>
>> > Signed-off-by: Dunrong Huang <riegamaths@gmail.com>
>> > ---
>> >  Makefile | 2 +-
>> >  1 file changed, 1 insertion(+), 1 deletion(-)
>> >
>> > diff --git a/Makefile b/Makefile
>> > index 8aca92f..64b0b1b 100644
>> > --- a/Makefile
>> > +++ b/Makefile
>> > @@ -148,7 +148,7 @@ $(SRC_PATH)/pixman/configure:
>> >  DTC_MAKE_ARGS=-I$(SRC_PATH)/dtc VPATH=$(SRC_PATH)/dtc -C dtc V="$(V)"
>> > LIBFDT_srcdir=$(SRC_PATH)/dtc/libfdt
>> >  DTC_CFLAGS=$(CFLAGS) $(QEMU_CFLAGS) -I$(BUILD_DIR)/dtc
>> > -I$(SRC_PATH)/dtc -I$(SRC_PATH)/dtc/libfdt
>> >
>> > -subdir-dtc:dtc/libfdt dtc/tests
>> > +subdir-dtc:dtc dtc/libfdt dtc/tests
>> >       $(call quiet-command,$(MAKE) $(DTC_MAKE_ARGS)
>> > CFLAGS="$(DTC_CFLAGS)" LDFLAGS="$(LDFLAGS)" ARFLAGS="$(ARFLAGS)" CC="$(CC)"
>> > AR="$(AR)" LD="$(LD)" $(SUBDIR_MAKEFLAGS) libfdt/libfdt.a,)
>> >
>> >  dtc/%:
>> >
>>
>> Does it work if the "-I$(<D) -I$(@D)" is added to QEMU_INCLUDES instead
>> of QEMU_CFLAGS?
>
> Yes,  this way works for me.
>
> diff --git a/rules.mak b/rules.mak
> index 292a422..2572070 100644
> --- a/rules.mak
> +++ b/rules.mak
> @@ -15,7 +15,7 @@ MAKEFLAGS += -rR
>  QEMU_DGFLAGS += -MMD -MP -MT $@ -MF $(*D)/$(*F).d
>
>  # Same as -I$(SRC_PATH) -I., but for the nested source/object directories
> -QEMU_CFLAGS += -I$(<D) -I$(@D)
> +QEMU_INCLUDES += -I$(<D) -I$(@D)
>

and patch is good. Thanks for the fix.

Regards,
Peter

> but I don't know if it will break other build, e.g. mingw build.
>>
>>
>> Paolo
>
>
>
>
> --
> Best Regards,
>
> Dunrong Huang

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2013-04-29 23:58 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-04-28 18:04 [Qemu-devel] [PATCH] Makefile: Fix build breakage Dunrong Huang
2013-04-29  8:19 ` Paolo Bonzini
2013-04-29 13:33   ` Dunrong Huang
2013-04-29 14:22     ` Paolo Bonzini
2013-04-29 23:58     ` Peter Crosthwaite

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).