All of lore.kernel.org
 help / color / mirror / Atom feed
From: Arnaldo Carvalho de Melo <acme@kernel.org>
To: "Denys Zagorui -X (dzagorui - GLOBALLOGIC INC at Cisco)" 
	<dzagorui@cisco.com>
Cc: "jolsa@redhat.com" <jolsa@redhat.com>,
	"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
	"peterz@infradead.org" <peterz@infradead.org>,
	"mingo@redhat.com" <mingo@redhat.com>,
	"mark.rutland@arm.com" <mark.rutland@arm.com>,
	"alexander.shishkin@linux.intel.com" 
	<alexander.shishkin@linux.intel.com>,
	"namhyung@kernel.org" <namhyung@kernel.org>
Subject: Re: [PATCH v7 1/3] perf report: compile tips.txt in perf binary
Date: Wed, 26 May 2021 12:44:47 -0300	[thread overview]
Message-ID: <YK5s7xKIKGuJkXYr@kernel.org> (raw)
In-Reply-To: <BY5PR11MB40248ABAFED285B92AE9F01CD9249@BY5PR11MB4024.namprd11.prod.outlook.com>

Em Wed, May 26, 2021 at 02:50:24PM +0000, Denys Zagorui -X (dzagorui - GLOBALLOGIC INC at Cisco) escreveu:
> > [perfbuilder@five ~]$ export PERF_TARBALL=http://192.168.100.2/perf/perf-5.13.0-rc3.tar.xz
> > [perfbuilder@five ~]$ time dm
> > Wed May 26 11:04:00 AM -03 2021
> > # export PERF_TARBALL=http://192.168.100.2/perf/perf-5.13.0-rc3.tar.xz
> > # dm
> >   1     9.39 alpine:3.4                    : FAIL gcc version 5.3.0 (Alpine 5.3.0)
> >    builtin-report.c: In function 'cmd_report':
> >    builtin-report.c:560:3: error: 'prev' may be used uninitialized in this function [-Werror=maybe-uninitialized]
> >       fprintf(stdout, "#\n# (%s)\n#\n", help);
> >       ^
> >    builtin-report.c:622:20: note: 'prev' was declared here
> >      char *tok, *tmp, *prev;
> > <SNIP>
> >
> >  10    13.35 alpine:3.13                   : FAIL gcc version 10.2.1 20201203 (Alpine 10.2.1_pre1)
> >    builtin-report.c: In function 'cmd_report':
> >    builtin-report.c:560:3: error: 'prev' may be used uninitialized in this function [-Werror=maybe-uninitialized]
> >      560 |   fprintf(stdout, "#\n# (%s)\n#\n", help);
> >          |   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
> >    builtin-report.c:622:20: note: 'prev' was declared here
> >      622 |  char *tok, *tmp, *prev;
> >          |                    ^~~~
> >    cc1: all warnings being treated as errors
> >  11    13.77 alpine:edge                   : FAIL gcc version 10.3.1 20210424 (Alpine 10.3.1_git20210424)
> >    builtin-report.c: In function 'cmd_report':
> >    builtin-report.c:560:3: error: 'prev' may be used uninitialized in this function [-Werror=maybe-uninitialized]
> >      560 |   fprintf(stdout, "#\n# (%s)\n#\n", help);
> >          |   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
> >    builtin-report.c:622:20: note: 'prev' was declared here
> >      622 |  char *tok, *tmp, *prev;
> >          |                    ^~~~
> >    cc1: all warnings being treated as errors
> >
> >
> > I'll check later...
> 
> prev should be initialized to _binary_Documentation_tips_txt_start, i can resend 


More problems with that patch, so I'm removing it for now, till we have
these addressed.

- Arnaldo

When cross-building to Risc-V 64-bit:

  LD       /tmp/build/perf/Documentation/tips.o
riscv64-linux-gnu-ld: --relax and -r may not be used together
Documentation/Build:7: recipe for target '/tmp/build/perf/Documentation/tips.o' failed
make[4]: *** [/tmp/build/perf/Documentation/tips.o] Error 1
/git/perf-5.13.0-rc3/tools/build/Makefile.build:139: recipe for target 'Documentation' failed
make[3]: *** [Documentation] Error 2
make[3]: *** Waiting for unfinished jobs....

Ditto for m68k

  LD       /tmp/build/perf/Documentation/tips.o
m68k-linux-gnu-ld: failed to merge target specific data of file Documentation/tips.txt
Documentation/Build:7: recipe for target '/tmp/build/perf/Documentation/tips.o' failed
make[4]: *** [/tmp/build/perf/Documentation/tips.o] Error 1
/git/perf-5.13.0-rc3/tools/build/Makefile.build:139: recipe for target 'Documentation' failed
make[3]: *** [Documentation] Error 2
make[3]: *** Waiting for unfinished jobs....



That same problem, for other targets:

  42     7.55 fedora:34-x-ARC-uClibc        : FAIL gcc version 8.3.1 20190225 (ARCv2 ISA Linux uClibc toolchain 2019.03-rc1)
    builtin-report.c: In function 'cmd_report':
    builtin-report.c:560:3: error: 'prev' may be used uninitialized in this function [-Werror=maybe-uninitialized]
       fprintf(stdout, "#\n# (%s)\n#\n", help);
       ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    builtin-report.c:622:20: note: 'prev' was declared here
      char *tok, *tmp, *prev;
                        ^~~~

  19     9.46 debian:8                      : FAIL gcc version 4.9.2 (Debian 4.9.2-10+deb8u2)
    builtin-report.c: In function 'cmd_report':
    builtin-report.c:654:7: error: 'prev' may be used uninitialized in this function [-Werror=maybe-uninitialized]
       ret = evlist__tui_browse_hists(evlist, help, NULL, rep->min_percent,
           ^
    builtin-report.c:622:20: note: 'prev' was declared here
      char *tok, *tmp, *prev;
                        ^
    cc1: all warnings being treated as errors

      reply	other threads:[~2021-05-26 15:44 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-05-22  6:20 [PATCH v7 1/3] perf report: compile tips.txt in perf binary Denys Zagorui
2021-05-22  6:20 ` [PATCH v7 2/3] perf tests: avoid storing an absolute path " Denys Zagorui
2021-05-23 16:30   ` Jiri Olsa
2021-05-22  6:20 ` [PATCH v7 3/3] perf parse-events: add bison --file-prefix-map option Denys Zagorui
2021-05-26 14:07 ` [PATCH v7 1/3] perf report: compile tips.txt in perf binary Arnaldo Carvalho de Melo
2021-05-26 14:50   ` Denys Zagorui -X (dzagorui - GLOBALLOGIC INC at Cisco)
2021-05-26 15:44     ` Arnaldo Carvalho de Melo [this message]

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=YK5s7xKIKGuJkXYr@kernel.org \
    --to=acme@kernel.org \
    --cc=alexander.shishkin@linux.intel.com \
    --cc=dzagorui@cisco.com \
    --cc=jolsa@redhat.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mark.rutland@arm.com \
    --cc=mingo@redhat.com \
    --cc=namhyung@kernel.org \
    --cc=peterz@infradead.org \
    /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 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.