[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] Re: [XEN PATCH 1/4] build: xen/include: use if_changed
Hi Anthony, > On 1 Jun 2022, at 17:59, Anthony PERARD <anthony.perard@xxxxxxxxxx> wrote: > > Use "define" for the headers*_chk commands as otherwise the "#" > is interpreted as a comment and make can't find the end of > $(foreach,). > > Adding several .PRECIOUS as without them `make` deletes the > intermediate targets. This is an issue because the macro $(if_changed,) > check if the target exist in order to decide whether to recreate the > target. > > Removing the call to `mkdir` from the commands. Those aren't needed > anymore because a rune in Rules.mk creates the directory for each > $(targets). > > Remove "export PYTHON" as it is already exported. With this change, compiling for x86 is now ending up in: CHK include/headers99.chk make[9]: execvp: /bin/sh: Argument list too long make[9]: *** [include/Makefile:181: include/headers++.chk] Error 127 Not quite sure yet why but I wanted to signal it early as other might be impacted. Arm and arm64 builds are not impacted. Cheers Bertrand > > Signed-off-by: Anthony PERARD <anthony.perard@xxxxxxxxxx> > --- > xen/include/Makefile | 108 ++++++++++++++++++++++++++++++------------- > 1 file changed, 76 insertions(+), 32 deletions(-) > > diff --git a/xen/include/Makefile b/xen/include/Makefile > index 03baf10efb..6d9bcc19b0 100644 > --- a/xen/include/Makefile > +++ b/xen/include/Makefile > @@ -45,38 +45,65 @@ public-$(CONFIG_ARM) := $(wildcard > $(srcdir)/public/arch-arm/*.h $(srcdir)/publi > .PHONY: all > all: $(addprefix $(obj)/,$(headers-y)) > > -$(obj)/compat/%.h: $(obj)/compat/%.i $(srcdir)/Makefile > $(srctree)/tools/compat-build-header.py > - $(PYTHON) $(srctree)/tools/compat-build-header.py <$< $(patsubst > $(obj)/%,%,$@) >>$@.new; \ > - mv -f $@.new $@ > - > -$(obj)/compat/%.i: $(obj)/compat/%.c $(srcdir)/Makefile > - $(CPP) $(filter-out -Wa$(comma)% -include > %/include/xen/config.h,$(XEN_CFLAGS)) $(cppflags-y) -o $@ $< > - > -$(obj)/compat/%.c: $(src)/public/%.h $(srcdir)/xlat.lst $(srcdir)/Makefile > $(srctree)/tools/compat-build-source.py > - mkdir -p $(@D) > - $(PYTHON) $(srctree)/tools/compat-build-source.py $(srcdir)/xlat.lst > <$< >$@.new > - mv -f $@.new $@ > - > -$(obj)/compat/.xlat/%.h: $(obj)/compat/%.h $(obj)/compat/.xlat/%.lst > $(srctree)/tools/get-fields.sh $(srcdir)/Makefile > - export PYTHON=$(PYTHON); \ > - while read what name; do \ > - $(SHELL) $(srctree)/tools/get-fields.sh "$$what" compat_$$name > $< || exit $$?; \ > - done <$(patsubst $(obj)/compat/%,$(obj)/compat/.xlat/%,$(basename > $<)).lst >$@.new > - mv -f $@.new $@ > +quiet_cmd_compat_h = GEN $@ > +cmd_compat_h = \ > + $(PYTHON) $(srctree)/tools/compat-build-header.py <$< $(patsubst > $(obj)/%,%,$@) >>$@.new; \ > + mv -f $@.new $@ > + > +quiet_cmd_compat_i = CPP $@ > +cmd_compat_i = $(CPP) $(filter-out -Wa$(comma)% -include > %/include/xen/config.h,$(XEN_CFLAGS)) $(cppflags-y) -o $@ $< > + > +quiet_cmd_compat_c = GEN $@ > +cmd_compat_c = \ > + $(PYTHON) $(srctree)/tools/compat-build-source.py $(srcdir)/xlat.lst <$< > >$@.new; \ > + mv -f $@.new $@ > + > +quiet_cmd_xlat_headers = GEN $@ > +cmd_xlat_headers = \ > + while read what name; do \ > + $(SHELL) $(srctree)/tools/get-fields.sh "$$what" compat_$$name $< || > exit $$?; \ > + done <$(patsubst $(obj)/compat/%,$(obj)/compat/.xlat/%,$(basename > $<)).lst >$@.new; \ > + mv -f $@.new $@ > + > +targets += $(headers-y) > +$(obj)/compat/%.h: $(obj)/compat/%.i $(srctree)/tools/compat-build-header.py > FORCE > + $(call if_changed,compat_h) > + > +.PRECIOUS: $(obj)/compat/%.i > +targets += $(patsubst %.h, %.i, $(headers-y)) > +$(obj)/compat/%.i: $(obj)/compat/%.c FORCE > + $(call if_changed,compat_i) > + > +.PRECIOUS: $(obj)/compat/%.c > +targets += $(patsubst %.h, %.c, $(headers-y)) > +$(obj)/compat/%.c: $(src)/public/%.h $(srcdir)/xlat.lst > $(srctree)/tools/compat-build-source.py FORCE > + $(call if_changed,compat_c) > + > +targets += $(patsubst compat/%, compat/.xlat/%, $(headers-y)) > +$(obj)/compat/.xlat/%.h: $(obj)/compat/%.h $(obj)/compat/.xlat/%.lst > $(srctree)/tools/get-fields.sh FORCE > + $(call if_changed,xlat_headers) > + > +quiet_cmd_xlat_lst = GEN $@ > +cmd_xlat_lst = \ > + grep -v '^[[:blank:]]*$(pound)' $< | sed -ne > 's,@arch@,$(compat-arch-y),g' -re 's,[[:blank:]]+$*\.h[[:blank:]]*$$,,p' > >$@.new; \ > + $(call move-if-changed,$@.new,$@) > > .PRECIOUS: $(obj)/compat/.xlat/%.lst > -$(obj)/compat/.xlat/%.lst: $(srcdir)/xlat.lst $(srcdir)/Makefile > - mkdir -p $(@D) > - grep -v '^[[:blank:]]*#' $< | sed -ne 's,@arch@,$(compat-arch-y),g' -re > 's,[[:blank:]]+$*\.h[[:blank:]]*$$,,p' >$@.new > - $(call move-if-changed,$@.new,$@) > +targets += $(patsubst compat/%.h, compat/.xlat/%.lst, $(headers-y)) > +$(obj)/compat/.xlat/%.lst: $(srcdir)/xlat.lst FORCE > + $(call if_changed,xlat_lst) > > xlat-y := $(shell sed -ne 's,@arch@,$(compat-arch-y),g' -re > 's,^[?!][[:blank:]]+[^[:blank:]]+[[:blank:]]+,,p' $(srcdir)/xlat.lst | uniq) > xlat-y := $(filter $(patsubst compat/%,%,$(headers-y)),$(xlat-y)) > > -$(obj)/compat/xlat.h: $(addprefix $(obj)/compat/.xlat/,$(xlat-y)) > $(obj)/config/auto.conf $(srcdir)/Makefile > - cat $(filter %.h,$^) >$@.new > +quiet_cmd_xlat_h = GEN $@ > +cmd_xlat_h = \ > + cat $(filter %.h,$^) >$@.new; \ > mv -f $@.new $@ > > +$(obj)/compat/xlat.h: $(addprefix $(obj)/compat/.xlat/,$(xlat-y)) > $(obj)/config/auto.conf FORCE > + $(call if_changed,xlat_h) > + > ifeq ($(XEN_TARGET_ARCH),$(XEN_COMPILE_ARCH)) > > all: $(obj)/headers.chk $(obj)/headers99.chk $(obj)/headers++.chk > @@ -102,27 +129,31 @@ PUBLIC_C99_HEADERS := $(call > public-filter-headers,public-c99-headers) > $(src)/public/io/9pfs.h-prereq := string > $(src)/public/io/pvcalls.h-prereq := string > > -$(obj)/headers.chk: $(PUBLIC_ANSI_HEADERS) $(srcdir)/Makefile > +quiet_cmd_header_chk = CHK $@ > +cmd_header_chk = \ > for i in $(filter %.h,$^); do \ > $(CC) -x c -ansi -Wall -Werror -include stdint.h \ > -S -o /dev/null $$i || exit 1; \ > echo $$i; \ > - done >$@.new > + done >$@.new; \ > mv $@.new $@ > > -$(obj)/headers99.chk: $(PUBLIC_C99_HEADERS) $(srcdir)/Makefile > - rm -f $@.new > +quiet_cmd_headers99_chk = CHK $@ > +define cmd_headers99_chk > + rm -f $@.new; \ > $(foreach i, $(filter %.h,$^), \ > echo "#include "\"$(i)\" \ > | $(CC) -x c -std=c99 -Wall -Werror \ > -include stdint.h \ > $(foreach j, $($(patsubst $(srctree)/%,%,$i)-prereq), -include > $(j).h) \ > -S -o /dev/null - \ > - || exit $$?; echo $(i) >> $@.new;) > + || exit $$?; echo $(i) >> $@.new;) \ > mv $@.new $@ > +endef > > -$(obj)/headers++.chk: $(PUBLIC_HEADERS) $(srcdir)/Makefile > - rm -f $@.new > +quiet_cmd_headerscxx_chk = CHK $@ > +define cmd_headerscxx_chk > + rm -f $@.new; \ > if ! $(CXX) -v >/dev/null 2>&1; then \ > touch $@.new; \ > exit 0; \ > @@ -133,8 +164,21 @@ $(obj)/headers++.chk: $(PUBLIC_HEADERS) > $(srcdir)/Makefile > -include stdint.h -include $(srcdir)/public/xen.h \ > $(foreach j, $($(patsubst $(srctree)/%,%,$i)-prereq), -include > c$(j)) \ > -S -o /dev/null - \ > - || exit $$?; echo $(i) >> $@.new;) > + || exit $$?; echo $(i) >> $@.new;) \ > mv $@.new $@ > +endef > + > +targets += headers.chk > +$(obj)/headers.chk: $(PUBLIC_ANSI_HEADERS) FORCE > + $(call if_changed,header_chk) > + > +targets += headers99.chk > +$(obj)/headers99.chk: $(PUBLIC_C99_HEADERS) FORCE > + $(call if_changed,headers99_chk) > + > +targets += headers++.chk > +$(obj)/headers++.chk: $(PUBLIC_HEADERS) FORCE > + $(call if_changed,headerscxx_chk) > > endif > > -- > Anthony PERARD > >
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |