* [Buildroot] [PATCH 1/1] ustr: fix build issue with GCC5
@ 2015-11-21 19:28 Sergio Prado
2015-11-21 23:53 ` Arnout Vandecappelle
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Sergio Prado @ 2015-11-21 19:28 UTC (permalink / raw)
To: buildroot
This patch fixes the following error messages:
ustr-cmp-code-so-dbg.o: In function `ustr_pool_make_subpool':
ustr-cmp-dbg-code.c:(.text+0x0): multiple definition of
`ustr_pool_make_subpool'
ustr-b-code-so-dbg.o:ustr-b-dbg-code.c:(.text+0x0): first defined here
ustr-cmp-code-so-dbg.o: In function `ustr_pool_clear':
ustr-cmp-dbg-code.c:(.text+0x44): multiple definition of
`ustr_pool_clear'
ustr-b-code-so-dbg.o:ustr-b-dbg-code.c:(.text+0x44): first defined here
ustr-cmp-code-so-dbg.o: In function `ustr_pool_free':
...
That's because the application assumes gnu89 behaviour of "inline" and
"extern inline", but gcc5 defaults to gnu11. So we need to force gnu89
in the compilation flags.
Fixes:
http://autobuild.buildroot.org/results/fde/fde02ae2883a058b98e57ba087466d820ab1a5eb//
http://autobuild.buildroot.org/results/e04/e04849c31e2a2528282ce6cdcf69aa10076d721d//
http://autobuild.buildroot.org/results/7b3/7b3295e711fc51907c311adb63f0b7d06a90a7b9//
...and many others.
Signed-off-by: Sergio Prado <sergio.prado@e-labworks.com>
---
package/ustr/ustr.mk | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/package/ustr/ustr.mk b/package/ustr/ustr.mk
index 3144c0b47c70..817f0b0c5e9c 100644
--- a/package/ustr/ustr.mk
+++ b/package/ustr/ustr.mk
@@ -12,6 +12,8 @@ USTR_LICENSE_FILES = LICENSE LICENSE_BSD LICENSE_LGPL LICENSE_MIT
USTR_INSTALL_STAGING = YES
+USTR_CFLAGS = $(TARGET_CFLAGS) -std=gnu89
+
ifeq ($(BR2_STATIC_LIBS),y)
USTR_BUILD_TARGETS = all
USTR_INSTALL_TARGETS = install
@@ -24,7 +26,8 @@ USTR_INSTALL_TARGETS = all install-shared
endif
define USTR_BUILD_CMDS
- $(MAKE) -C $(@D) $(TARGET_CONFIGURE_OPTS) $(USTR_BUILD_TARGETS)
+ $(MAKE) -C $(@D) $(TARGET_CONFIGURE_OPTS) CFLAGS="$(USTR_CFLAGS)" \
+ $(USTR_BUILD_TARGETS)
endef
define USTR_INSTALL_STAGING_CMDS
--
1.9.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [Buildroot] [PATCH 1/1] ustr: fix build issue with GCC5
2015-11-21 19:28 [Buildroot] [PATCH 1/1] ustr: fix build issue with GCC5 Sergio Prado
@ 2015-11-21 23:53 ` Arnout Vandecappelle
2015-11-21 23:54 ` Arnout Vandecappelle
2015-11-22 9:14 ` Thomas Petazzoni
2 siblings, 0 replies; 4+ messages in thread
From: Arnout Vandecappelle @ 2015-11-21 23:53 UTC (permalink / raw)
To: buildroot
On 21-11-15 20:28, Sergio Prado wrote:
> This patch fixes the following error messages:
>
> ustr-cmp-code-so-dbg.o: In function `ustr_pool_make_subpool':
> ustr-cmp-dbg-code.c:(.text+0x0): multiple definition of
> `ustr_pool_make_subpool'
> ustr-b-code-so-dbg.o:ustr-b-dbg-code.c:(.text+0x0): first defined here
> ustr-cmp-code-so-dbg.o: In function `ustr_pool_clear':
> ustr-cmp-dbg-code.c:(.text+0x44): multiple definition of
> `ustr_pool_clear'
> ustr-b-code-so-dbg.o:ustr-b-dbg-code.c:(.text+0x44): first defined here
> ustr-cmp-code-so-dbg.o: In function `ustr_pool_free':
> ...
>
> That's because the application assumes gnu89 behaviour of "inline" and
> "extern inline", but gcc5 defaults to gnu11. So we need to force gnu89
> in the compilation flags.
>
> Fixes:
> http://autobuild.buildroot.org/results/fde/fde02ae2883a058b98e57ba087466d820ab1a5eb//
> http://autobuild.buildroot.org/results/e04/e04849c31e2a2528282ce6cdcf69aa10076d721d//
> http://autobuild.buildroot.org/results/7b3/7b3295e711fc51907c311adb63f0b7d06a90a7b9//
> ...and many others.
>
> Signed-off-by: Sergio Prado <sergio.prado@e-labworks.com>
I would normally prefer this option (not patching) rather than taking the
debian patches, so we remain closer to upstream.
However, in this case, upstream has been inactive for 7 years, so there's not
much point following it. In a way, Debian could be considered the new upstream.
That said, for 2015.11, this approach is safer.
So I'd propose to take this patch for 2015.11, and Ryan's Debian patch for
next. Peter, what do you think?
Reviewed-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
> ---
> package/ustr/ustr.mk | 5 ++++-
> 1 file changed, 4 insertions(+), 1 deletion(-)
>
> diff --git a/package/ustr/ustr.mk b/package/ustr/ustr.mk
> index 3144c0b47c70..817f0b0c5e9c 100644
> --- a/package/ustr/ustr.mk
> +++ b/package/ustr/ustr.mk
> @@ -12,6 +12,8 @@ USTR_LICENSE_FILES = LICENSE LICENSE_BSD LICENSE_LGPL LICENSE_MIT
>
> USTR_INSTALL_STAGING = YES
>
> +USTR_CFLAGS = $(TARGET_CFLAGS) -std=gnu89
> +
> ifeq ($(BR2_STATIC_LIBS),y)
> USTR_BUILD_TARGETS = all
> USTR_INSTALL_TARGETS = install
> @@ -24,7 +26,8 @@ USTR_INSTALL_TARGETS = all install-shared
> endif
>
> define USTR_BUILD_CMDS
> - $(MAKE) -C $(@D) $(TARGET_CONFIGURE_OPTS) $(USTR_BUILD_TARGETS)
> + $(MAKE) -C $(@D) $(TARGET_CONFIGURE_OPTS) CFLAGS="$(USTR_CFLAGS)" \
> + $(USTR_BUILD_TARGETS)
> endef
>
> define USTR_INSTALL_STAGING_CMDS
>
--
Arnout Vandecappelle arnout at mind be
Senior Embedded Software Architect +32-16-286500
Essensium/Mind http://www.mind.be
G.Geenslaan 9, 3001 Leuven, Belgium BE 872 984 063 RPR Leuven
LinkedIn profile: http://www.linkedin.com/in/arnoutvandecappelle
GPG fingerprint: 7493 020B C7E3 8618 8DEC 222C 82EB F404 F9AC 0DDF
^ permalink raw reply [flat|nested] 4+ messages in thread
* [Buildroot] [PATCH 1/1] ustr: fix build issue with GCC5
2015-11-21 19:28 [Buildroot] [PATCH 1/1] ustr: fix build issue with GCC5 Sergio Prado
2015-11-21 23:53 ` Arnout Vandecappelle
@ 2015-11-21 23:54 ` Arnout Vandecappelle
2015-11-22 9:14 ` Thomas Petazzoni
2 siblings, 0 replies; 4+ messages in thread
From: Arnout Vandecappelle @ 2015-11-21 23:54 UTC (permalink / raw)
To: buildroot
On 21-11-15 20:28, Sergio Prado wrote:
> This patch fixes the following error messages:
>
> ustr-cmp-code-so-dbg.o: In function `ustr_pool_make_subpool':
> ustr-cmp-dbg-code.c:(.text+0x0): multiple definition of
> `ustr_pool_make_subpool'
> ustr-b-code-so-dbg.o:ustr-b-dbg-code.c:(.text+0x0): first defined here
> ustr-cmp-code-so-dbg.o: In function `ustr_pool_clear':
> ustr-cmp-dbg-code.c:(.text+0x44): multiple definition of
> `ustr_pool_clear'
> ustr-b-code-so-dbg.o:ustr-b-dbg-code.c:(.text+0x44): first defined here
> ustr-cmp-code-so-dbg.o: In function `ustr_pool_free':
> ...
>
> That's because the application assumes gnu89 behaviour of "inline" and
> "extern inline", but gcc5 defaults to gnu11. So we need to force gnu89
> in the compilation flags.
>
> Fixes:
> http://autobuild.buildroot.org/results/fde/fde02ae2883a058b98e57ba087466d820ab1a5eb//
> http://autobuild.buildroot.org/results/e04/e04849c31e2a2528282ce6cdcf69aa10076d721d//
> http://autobuild.buildroot.org/results/7b3/7b3295e711fc51907c311adb63f0b7d06a90a7b9//
Oh, small nit: it's better to use the short URLs (which fit in 80 columns):
http://autobuild.buildroot.org/results/fde02ae2883a058b98e57ba087466d820ab1a5eb
Regards,
Arnout
[snip]
--
Arnout Vandecappelle arnout at mind be
Senior Embedded Software Architect +32-16-286500
Essensium/Mind http://www.mind.be
G.Geenslaan 9, 3001 Leuven, Belgium BE 872 984 063 RPR Leuven
LinkedIn profile: http://www.linkedin.com/in/arnoutvandecappelle
GPG fingerprint: 7493 020B C7E3 8618 8DEC 222C 82EB F404 F9AC 0DDF
^ permalink raw reply [flat|nested] 4+ messages in thread
* [Buildroot] [PATCH 1/1] ustr: fix build issue with GCC5
2015-11-21 19:28 [Buildroot] [PATCH 1/1] ustr: fix build issue with GCC5 Sergio Prado
2015-11-21 23:53 ` Arnout Vandecappelle
2015-11-21 23:54 ` Arnout Vandecappelle
@ 2015-11-22 9:14 ` Thomas Petazzoni
2 siblings, 0 replies; 4+ messages in thread
From: Thomas Petazzoni @ 2015-11-22 9:14 UTC (permalink / raw)
To: buildroot
Dear Sergio Prado,
On Sat, 21 Nov 2015 17:28:28 -0200, Sergio Prado wrote:
> This patch fixes the following error messages:
>
> ustr-cmp-code-so-dbg.o: In function `ustr_pool_make_subpool':
> ustr-cmp-dbg-code.c:(.text+0x0): multiple definition of
> `ustr_pool_make_subpool'
> ustr-b-code-so-dbg.o:ustr-b-dbg-code.c:(.text+0x0): first defined here
> ustr-cmp-code-so-dbg.o: In function `ustr_pool_clear':
> ustr-cmp-dbg-code.c:(.text+0x44): multiple definition of
> `ustr_pool_clear'
> ustr-b-code-so-dbg.o:ustr-b-dbg-code.c:(.text+0x44): first defined here
> ustr-cmp-code-so-dbg.o: In function `ustr_pool_free':
> ...
>
> That's because the application assumes gnu89 behaviour of "inline" and
> "extern inline", but gcc5 defaults to gnu11. So we need to force gnu89
> in the compilation flags.
>
> Fixes:
> http://autobuild.buildroot.org/results/fde/fde02ae2883a058b98e57ba087466d820ab1a5eb//
> http://autobuild.buildroot.org/results/e04/e04849c31e2a2528282ce6cdcf69aa10076d721d//
> http://autobuild.buildroot.org/results/7b3/7b3295e711fc51907c311adb63f0b7d06a90a7b9//
> ...and many others.
>
> Signed-off-by: Sergio Prado <sergio.prado@e-labworks.com>
> ---
> package/ustr/ustr.mk | 5 ++++-
> 1 file changed, 4 insertions(+), 1 deletion(-)
Applied to master, after fixing the URLs as suggested by Arnout.
Thanks!
Thomas
--
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2015-11-22 9:14 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-11-21 19:28 [Buildroot] [PATCH 1/1] ustr: fix build issue with GCC5 Sergio Prado
2015-11-21 23:53 ` Arnout Vandecappelle
2015-11-21 23:54 ` Arnout Vandecappelle
2015-11-22 9:14 ` Thomas Petazzoni
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox