All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PATCH 0/2] Fix build with the latest GNU Make
@ 2018-09-19  2:35 Masahiro Yamada
  2018-09-19  2:35 ` [U-Boot] [PATCH 1/2] Kbuild: fix # escaping in .cmd files for future Make Masahiro Yamada
  2018-09-19  2:35 ` [U-Boot] [PATCH 2/2] kbuild: fix # escaping in appending U-Boot own DT Masahiro Yamada
  0 siblings, 2 replies; 5+ messages in thread
From: Masahiro Yamada @ 2018-09-19  2:35 UTC (permalink / raw)
  To: u-boot


I can not build my board with the lastest GNU Make
since it changed the escaping of '#' in function calls.

Change the makefiles portable to both old and new GNU Make version.



Masahiro Yamada (1):
  kbuild: fix # escaping in appending U-Boot own DT

Rasmus Villemoes (1):
  Kbuild: fix # escaping in .cmd files for future Make

 scripts/Kbuild.include | 5 +++--
 scripts/Makefile.lib   | 2 +-
 2 files changed, 4 insertions(+), 3 deletions(-)

-- 
2.7.4

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

* [U-Boot] [PATCH 1/2] Kbuild: fix # escaping in .cmd files for future Make
  2018-09-19  2:35 [U-Boot] [PATCH 0/2] Fix build with the latest GNU Make Masahiro Yamada
@ 2018-09-19  2:35 ` Masahiro Yamada
  2018-09-30 19:25   ` [U-Boot] [U-Boot, " Tom Rini
  2018-09-19  2:35 ` [U-Boot] [PATCH 2/2] kbuild: fix # escaping in appending U-Boot own DT Masahiro Yamada
  1 sibling, 1 reply; 5+ messages in thread
From: Masahiro Yamada @ 2018-09-19  2:35 UTC (permalink / raw)
  To: u-boot

From: Rasmus Villemoes <linux@rasmusvillemoes.dk>

[ commit 9564a8cf422d7b58f6e857e3546d346fa970191e in Linux ]

I tried building using a freshly built Make (4.2.1-69-g8a731d1), but
already the objtool build broke with

orc_dump.c: In function ‘orc_dump’:
orc_dump.c:106:2: error: ‘elf_getshnum’ is deprecated [-Werror=deprecated-declarations]
  if (elf_getshdrnum(elf, &nr_sections)) {

Turns out that with that new Make, the backslash was not removed, so cpp
didn't see a #include directive, grep found nothing, and
-DLIBELF_USE_DEPRECATED was wrongly put in CFLAGS.

Now, that new Make behaviour is documented in their NEWS file:

  * WARNING: Backward-incompatibility!
    Number signs (#) appearing inside a macro reference or function invocation
    no longer introduce comments and should not be escaped with backslashes:
    thus a call such as:
      foo := $(shell echo '#')
    is legal.  Previously the number sign needed to be escaped, for example:
      foo := $(shell echo '\#')
    Now this latter will resolve to "\#".  If you want to write makefiles
    portable to both versions, assign the number sign to a variable:
      C := \#
      foo := $(shell echo '$C')
    This was claimed to be fixed in 3.81, but wasn't, for some reason.
    To detect this change search for 'nocomment' in the .FEATURES variable.

This also fixes up the two make-cmd instances to replace # with $(pound)
rather than with \#. There might very well be other places that need
similar fixup in preparation for whatever future Make release contains
the above change, but at least this builds an x86_64 defconfig with the
new make.

Link: https://bugzilla.kernel.org/show_bug.cgi?id=197847
Cc: Randy Dunlap <rdunlap@infradead.org>
Signed-off-by: Rasmus Villemoes <linux@rasmusvillemoes.dk>
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
---

 scripts/Kbuild.include | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/scripts/Kbuild.include b/scripts/Kbuild.include
index 2c7918a..13ebddd 100644
--- a/scripts/Kbuild.include
+++ b/scripts/Kbuild.include
@@ -7,6 +7,7 @@ quote   := "
 squote  := '
 empty   :=
 space   := $(empty) $(empty)
+pound := \#
 
 ###
 # Name of target with a '.' as filename prefix. foo/bar.o => foo/.bar.o
@@ -242,11 +243,11 @@ endif
 
 # Replace >$< with >$$< to preserve $ when reloading the .cmd file
 # (needed for make)
-# Replace >#< with >\#< to avoid starting a comment in the .cmd file
+# Replace >#< with >$(pound)< to avoid starting a comment in the .cmd file
 # (needed for make)
 # Replace >'< with >'\''< to be able to enclose the whole string in '...'
 # (needed for the shell)
-make-cmd = $(call escsq,$(subst \#,\\\#,$(subst $$,$$$$,$(cmd_$(1)))))
+make-cmd = $(call escsq,$(subst $(pound),$$(pound),$(subst $$,$$$$,$(cmd_$(1)))))
 
 # Find any prerequisites that is newer than target or that does not exist.
 # PHONY targets skipped in both cases.
-- 
2.7.4

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

* [U-Boot] [PATCH 2/2] kbuild: fix # escaping in appending U-Boot own DT
  2018-09-19  2:35 [U-Boot] [PATCH 0/2] Fix build with the latest GNU Make Masahiro Yamada
  2018-09-19  2:35 ` [U-Boot] [PATCH 1/2] Kbuild: fix # escaping in .cmd files for future Make Masahiro Yamada
@ 2018-09-19  2:35 ` Masahiro Yamada
  2018-09-30 19:25   ` [U-Boot] [U-Boot, " Tom Rini
  1 sibling, 1 reply; 5+ messages in thread
From: Masahiro Yamada @ 2018-09-19  2:35 UTC (permalink / raw)
  To: u-boot

The escape sequence '\#' does not work for the latest GNU Make from
the git tree.

Replace it with $(pound) as Linux did.

Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
---

 scripts/Makefile.lib | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/scripts/Makefile.lib b/scripts/Makefile.lib
index f8c3fff..4dceb6d 100644
--- a/scripts/Makefile.lib
+++ b/scripts/Makefile.lib
@@ -299,7 +299,7 @@ quiet_cmd_dtc = DTC     $@
 # Modified for U-Boot
 # Bring in any U-Boot-specific include at the end of the file
 cmd_dtc = mkdir -p $(dir ${dtc-tmp}) ; \
-	(cat $<; $(if $(u_boot_dtsi),echo '\#include "$(u_boot_dtsi)"')) > $(pre-tmp); \
+	(cat $<; $(if $(u_boot_dtsi),echo '$(pound)include "$(u_boot_dtsi)"')) > $(pre-tmp); \
 	$(CPP) $(dtc_cpp_flags) -x assembler-with-cpp -o $(dtc-tmp) $(pre-tmp) ; \
 	$(DTC) -O dtb -o $@ -b 0 \
 		-i $(dir $<) $(DTC_FLAGS) \
-- 
2.7.4

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

* [U-Boot] [U-Boot, 1/2] Kbuild: fix # escaping in .cmd files for future Make
  2018-09-19  2:35 ` [U-Boot] [PATCH 1/2] Kbuild: fix # escaping in .cmd files for future Make Masahiro Yamada
@ 2018-09-30 19:25   ` Tom Rini
  0 siblings, 0 replies; 5+ messages in thread
From: Tom Rini @ 2018-09-30 19:25 UTC (permalink / raw)
  To: u-boot

On Wed, Sep 19, 2018 at 11:35:56AM +0900, Masahiro Yamada wrote:

> From: Rasmus Villemoes <linux@rasmusvillemoes.dk>
> 
> [ commit 9564a8cf422d7b58f6e857e3546d346fa970191e in Linux ]
> 
> I tried building using a freshly built Make (4.2.1-69-g8a731d1), but
> already the objtool build broke with
> 
> orc_dump.c: In function ‘orc_dump’:
> orc_dump.c:106:2: error: ‘elf_getshnum’ is deprecated [-Werror=deprecated-declarations]
>   if (elf_getshdrnum(elf, &nr_sections)) {
> 
> Turns out that with that new Make, the backslash was not removed, so cpp
> didn't see a #include directive, grep found nothing, and
> -DLIBELF_USE_DEPRECATED was wrongly put in CFLAGS.
> 
> Now, that new Make behaviour is documented in their NEWS file:
> 
>   * WARNING: Backward-incompatibility!
>     Number signs (#) appearing inside a macro reference or function invocation
>     no longer introduce comments and should not be escaped with backslashes:
>     thus a call such as:
>       foo := $(shell echo '#')
>     is legal.  Previously the number sign needed to be escaped, for example:
>       foo := $(shell echo '\#')
>     Now this latter will resolve to "\#".  If you want to write makefiles
>     portable to both versions, assign the number sign to a variable:
>       C := \#
>       foo := $(shell echo '$C')
>     This was claimed to be fixed in 3.81, but wasn't, for some reason.
>     To detect this change search for 'nocomment' in the .FEATURES variable.
> 
> This also fixes up the two make-cmd instances to replace # with $(pound)
> rather than with \#. There might very well be other places that need
> similar fixup in preparation for whatever future Make release contains
> the above change, but at least this builds an x86_64 defconfig with the
> new make.
> 
> Link: https://bugzilla.kernel.org/show_bug.cgi?id=197847
> Cc: Randy Dunlap <rdunlap@infradead.org>
> Signed-off-by: Rasmus Villemoes <linux@rasmusvillemoes.dk>
> Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>

Applied to u-boot/master, thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 819 bytes
Desc: not available
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20180930/6b5c77a7/attachment.sig>

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

* [U-Boot] [U-Boot, 2/2] kbuild: fix # escaping in appending U-Boot own DT
  2018-09-19  2:35 ` [U-Boot] [PATCH 2/2] kbuild: fix # escaping in appending U-Boot own DT Masahiro Yamada
@ 2018-09-30 19:25   ` Tom Rini
  0 siblings, 0 replies; 5+ messages in thread
From: Tom Rini @ 2018-09-30 19:25 UTC (permalink / raw)
  To: u-boot

On Wed, Sep 19, 2018 at 11:35:57AM +0900, Masahiro Yamada wrote:

> The escape sequence '\#' does not work for the latest GNU Make from
> the git tree.
> 
> Replace it with $(pound) as Linux did.
> 
> Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>

Applied to u-boot/master, thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 819 bytes
Desc: not available
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20180930/38cad03c/attachment.sig>

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

end of thread, other threads:[~2018-09-30 19:25 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-09-19  2:35 [U-Boot] [PATCH 0/2] Fix build with the latest GNU Make Masahiro Yamada
2018-09-19  2:35 ` [U-Boot] [PATCH 1/2] Kbuild: fix # escaping in .cmd files for future Make Masahiro Yamada
2018-09-30 19:25   ` [U-Boot] [U-Boot, " Tom Rini
2018-09-19  2:35 ` [U-Boot] [PATCH 2/2] kbuild: fix # escaping in appending U-Boot own DT Masahiro Yamada
2018-09-30 19:25   ` [U-Boot] [U-Boot, " Tom Rini

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.