Em Thu, May 14, 2020 at 10:54:49AM -0700, Ian Rogers escreveu:
> On Thu, May 14, 2020 at 8:04 AM Arnaldo Carvalho de Melo
> <arnaldo.m...@gmail.com> wrote:
> >
> > Em Thu, Mar 05, 2020 at 11:11:10PM -0800, Ian Rogers escreveu:
> > > Allow the CC compiler to accept a CFLAGS environment variable.
> > > Make the architecture test directory agree with the code comment.
> > > This doesn't change the code generated but makes it easier to integrate
> > > running the shell script in build systems like bazel.
> >
> > I've looked at this and split this part in a separate patch, and applied
> > it locally, please take a look, now looking at the other bit of the
> > patch.
> 
> 
> This bit looks good. The CFLAGS change is something I need to deal
> with a directory layout change in our build system.

I added that one as well, as a separate patch, this one:

commit 6e136ceba23c087b1e1b846914e425706d492a3a
Author: Ian Rogers <irog...@google.com>
Date:   Thu Mar 5 23:11:10 2020 -0800

    perf beauty: Allow the CC used in the arch errno names script to acccept 
CFLAGS
    
    Allow the CC compiler to accept a CFLAGS environment variable.  This
    doesn't change the code generated but makes it easier to integrate
    running the shell script in build systems like bazel.
    
    Signed-off-by: Ian Rogers <irog...@google.com>
    Cc: Adrian Hunter <adrian.hun...@intel.com>
    Cc: Alexander Shishkin <alexander.shish...@linux.intel.com>
    Cc: Alexios Zavras <alexios.zav...@intel.com>
    Cc: Andi Kleen <a...@linux.intel.com>
    Cc: Greg Kroah-Hartman <gre...@linuxfoundation.org>
    Cc: Igor Lubashev <iluba...@akamai.com>
    Cc: Jiri Olsa <jo...@redhat.com>
    Cc: Kan Liang <kan.li...@linux.intel.com>
    Cc: Mark Rutland <mark.rutl...@arm.com>
    Cc: Mathieu Poirier <mathieu.poir...@linaro.org>
    Cc: Namhyung Kim <namhy...@kernel.org>
    Cc: Nick Desaulniers <ndesaulni...@google.com>
    Cc: Peter Zijlstra <pet...@infradead.org>
    Cc: Stephane Eranian <eran...@google.com>
    Cc: Thomas Gleixner <t...@linutronix.de>
    Cc: Wei Li <liwei...@huawei.com>
    Link: http://lore.kernel.org/lkml/20200306071110.130202-4-irog...@google.com
    [ split from a larger patch ]
    Signed-off-by: Arnaldo Carvalho de Melo <a...@redhat.com>

diff --git a/tools/perf/trace/beauty/arch_errno_names.sh 
b/tools/perf/trace/beauty/arch_errno_names.sh
index f8c44a85650b..9f9ea45cddc4 100755
--- a/tools/perf/trace/beauty/arch_errno_names.sh
+++ b/tools/perf/trace/beauty/arch_errno_names.sh
@@ -57,7 +57,7 @@ process_arch()
        local arch="$1"
        local asm_errno=$(asm_errno_file "$arch")
 
-       $gcc $include_path -E -dM -x c $asm_errno \
+       $gcc $CFLAGS $include_path -E -dM -x c $asm_errno \
                |grep -hE 
'^#define[[:blank:]]+(E[^[:blank:]]+)[[:blank:]]+([[:digit:]]+).*' \
                |awk '{ print $2","$3; }' \
                |sort -t, -k2 -nu \

Reply via email to