From: Alexey Brodkin <Alexey.Brodkin@synopsys.com>
To: buildroot@busybox.net
Subject: [Buildroot] Analysis of build results for 2017-10-30
Date: Wed, 1 Nov 2017 10:01:14 +0000 [thread overview]
Message-ID: <1509530473.6560.11.camel@synopsys.com> (raw)
In-Reply-To: <20171101104532.43dcd164@windsurf>
Hi Thomas, Matthew,
On Wed, 2017-11-01 at 10:45 +0100, Thomas Petazzoni wrote:
> Hello,
>
> On Tue, 31 Oct 2017 21:37:28 -0500, Matthew Weber wrote:
>
> >
> > >
> > > This is happening only on ARC. Why? Matt Weber proposed a patch,
> > > https://urldefense.proofpoint.com/v2/url?u=https-3A__patchwork.ozlabs.org_patch_832397_&d=DwICAg&c=DPL6_X_6JkXFx7AXWqB0tg&r=lqdeeSSEes0GFDDl656e
> > > ViXO7breS55ytWkhpk5R81I&m=TIK4hy7KeHKzHVuof5f5an0Z8AexpTLUombe2nPAH8Y&s=9PIyZnaKCbGWuYkmizNBoKWkNQZ90OFwPSaZUl4-FTQ&e=, but I am not terribly
> > > convinced because it doesn't explain why this problem happens only on
> > > ARC, and why it appeared suddenly.??
> >
> > I kicked off a test build reverting the following commit.??We'll see
> > in the morning if it changed the behavior or the pass/fail.??(ie bump
> > from GCC 6.x to 7.x)
> > 5bd21f991f3 Evgeniy Didin?????2017-09-21 21:28:28
>
> OK, we'll see the result.
>
> >
> > One interesting thing to notes is the test-pkg is using a external ARC
> > GCC6 uclibc toolchain??and the failing builds are all internal
> > toolchain and GCC 7.
>
> Yes. But we have other toolchains tested by test-pkg that use gcc 7.x,
> so I'm surprised the problem doesn't pop up on other architectures.
As a matter of fact the same problem happens on ARM if GCC 7 is used.
That's my defconfig:
--------------------------->8---------------------
BR2_arm=y
BR2_GCC_VERSION_7_X=y
--------------------------->8---------------------
Now:
--------------------------->8---------------------
make argp-standalone
...
.../output/build/argp-standalone-1.3/argp-help.c:1217: undefined reference to `argp_fmtstream_set_wmargin'
.../output/build/argp-standalone-1.3/argp-help.c:1199: undefined reference to `argp_fmtstream_puts'
collect2: error: ld returned 1 exit status
--------------------------->8---------------------
Speaking about a fix for this problem I guess more elegant could be:
--------------------------->8---------------------
?argp-fmtstream.h | 2 +-
?1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/argp-fmtstream.h b/argp-fmtstream.h
index 2dd0925..cb0bead 100644
--- a/argp-fmtstream.h
+++ b/argp-fmtstream.h
@@ -215,7 +215,7 @@ extern int __argp_fmtstream_ensure (argp_fmtstream_t __fs, size_t __amount);
?#if defined(__GNUC__) && !defined(__GNUC_STDC_INLINE__)
?#define ARGP_FS_EI extern inline
?#else
-#define ARGP_FS_EI inline
+#define ARGP_FS_EI inline __attribute__((__always_inline__))
?#endif
?#endif
--------------------------->8---------------------
If that looks fine to you guys Eugeniy will send out that fix.
-Alexey
next prev parent reply other threads:[~2017-11-01 10:01 UTC|newest]
Thread overview: 43+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-10-31 7:00 [Buildroot] [autobuild.buildroot.net] Build results for 2017-10-30 Thomas Petazzoni
2017-10-31 22:05 ` [Buildroot] Analysis of build " Thomas Petazzoni
2017-11-01 2:37 ` Matthew Weber
2017-11-01 9:45 ` Thomas Petazzoni
2017-11-01 10:01 ` Alexey Brodkin [this message]
2017-11-01 10:24 ` Thomas Petazzoni
2017-11-01 10:31 ` Alexey Brodkin
2017-11-02 2:31 ` Waldemar Brodkorb
2017-11-02 8:06 ` Thomas Petazzoni
2017-11-01 13:24 ` Matthew Weber
2017-11-01 13:37 ` Thomas Petazzoni
2017-11-01 10:17 ` Samuel Martin
2017-11-01 13:40 ` Thomas Petazzoni
2017-11-01 18:03 ` Baruch Siach
2017-11-02 10:54 ` Peter Korsgaard
2017-11-03 22:31 ` Peter Korsgaard
2017-11-02 10:46 ` Peter Korsgaard
2017-11-02 17:43 ` Yann E. MORIN
2017-11-02 18:08 ` Yann E. MORIN
2017-11-02 20:04 ` Thomas Petazzoni
2017-11-02 20:55 ` Yann E. MORIN
2017-11-02 22:21 ` Thomas Petazzoni
2017-11-02 22:30 ` Alexey Brodkin
2017-11-03 11:17 ` Angelo Compagnucci
2017-11-03 13:38 ` Thomas Petazzoni
2017-11-03 13:46 ` Angelo Compagnucci
2017-11-03 13:52 ` Thomas Petazzoni
2017-11-03 14:18 ` Angelo Compagnucci
2017-11-03 14:28 ` Thomas Petazzoni
2017-11-03 14:35 ` Angelo Compagnucci
2017-11-03 14:41 ` Thomas Petazzoni
2017-11-04 22:18 ` Arnout Vandecappelle
2017-11-04 22:20 ` Thomas Petazzoni
2017-11-04 22:36 ` Peter Korsgaard
2017-11-05 14:40 ` Thomas Petazzoni
2017-11-05 19:36 ` Peter Korsgaard
2017-11-05 22:35 ` Thomas Petazzoni
2017-11-09 20:58 ` Alexey Brodkin
2017-11-02 22:22 ` Alexey Brodkin
2017-11-08 12:49 ` Johan Oudinet
2017-11-08 16:16 ` Matthew Weber
2017-11-08 17:33 ` Yann E. MORIN
2017-11-08 19:35 ` Matthew Weber
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1509530473.6560.11.camel@synopsys.com \
--to=alexey.brodkin@synopsys.com \
--cc=buildroot@busybox.net \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox