LKML Archive on lore.kernel.org
help / color / mirror / Atom feed
From: Jiri Olsa <jolsa@redhat.com>
To: Ingo Molnar <mingo@kernel.org>
Cc: Jiri Olsa <jolsa@kernel.org>,
linux-kernel@vger.kernel.org,
Adrian Hunter <adrian.hunter@intel.com>,
Alexis Berlemont <alexis.berlemont@gmail.com>,
Andi Kleen <ak@linux.intel.com>,
Anton Blanchard <anton@samba.org>,
Arnaldo Carvalho de Melo <acme@redhat.com>,
Borislav Petkov <bp@alien8.de>, Borislav Petkov <bp@suse.de>,
Cody P Schafer <cody@linux.vnet.ibm.com>,
Corey Ashford <cjashfor@linux.vnet.ibm.com>,
David Ahern <dsahern@gmail.com>,
Florian Fainelli <florian@openwrt.org>,
Frederic Weisbecker <fweisbec@gmail.com>,
Jan Heylen <heyleke@gmail.com>, Mark Salter <msalter@redhat.com>,
Namhyung Kim <namhyung@kernel.org>,
Paul Mackerras <paulus@samba.org>,
Peter Zijlstra <peterz@infradead.org>,
"S. Lockwood-Childs" <sjl@vctlabs.com>,
Sam Ravnborg <sam@ravnborg.org>,
Sasha Levin <sasha.levin@oracle.com>,
Stephane Eranian <eranian@google.com>,
Steven Rostedt <rostedt@goodmis.org>,
Sukadev Bhattiprolu <sukadev@linux.vnet.ibm.com>,
Will Deacon <will.deacon@arm.com>
Subject: Re: [PATCHv3 00/36] perf tools: New build framework
Date: Wed, 21 Jan 2015 13:01:54 +0100 [thread overview]
Message-ID: <20150121120154.GA7869@krava.brq.redhat.com> (raw)
In-Reply-To: <20150121061304.GB15963@gmail.com>
On Wed, Jan 21, 2015 at 07:13:04AM +0100, Ingo Molnar wrote:
>
> * Jiri Olsa <jolsa@kernel.org> wrote:
>
> > hi,
> > I'm following up on latest post from Alexis:
> > http://marc.info/?l=linux-kernel&m=141427580405357&w=2
> >
> > v3 changes:
> > - disabling only builtin rules, keeping builtin variables in place
> > because some projects we depends on using them (traceevent) [David]
> > - fixed empy source list issue that happened on arm [Will, Mark]
> > - updated to the current Arnaldo's perf/core branch
> > - added automated tests into: tools/build/tests/
> > - tested on arm64,ppc64,s390,x86_64,i386
> >
> > v2 changes:
> > - build Makefiles librarized and moved to 'tools/build' [Ingo]
> > - several minor fixies [Namhyung]
> > - tested on other archs now - x86_64, i386, powerpc
> > - moved tools/lib/* under new build framework to show
> > that it's possible ;-)
> > included traceevent/lockdep maintainers to get the feedback
> > - omitted last 2 patches
> >
> > The patchset is also available in:
> > git://git.kernel.org/pub/scm/linux/kernel/git/jolsa/perf.git
> > perf/build
> >
> > All tests/make tests passed.
>
> Very nice! I gave it a quick test and saw no problems, behavior,
> speed and functionality of the build appears to be identical to
> the old system.
>
> > Also now we have the full dependency check ((gcc -Wp,-MD,...
> > stuff) and build command line is stored/checked automatically
> > by the build system.
>
> Btw., another thing that might be nice to extract into
> tools/build/ [or tools/config/] is the build/OS features
> detection framework - it goes hand in hand with the build
> system.
right, it's on my TODO list ;-)
jirka
next prev parent reply other threads:[~2015-01-21 12:03 UTC|newest]
Thread overview: 54+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-01-20 16:38 Jiri Olsa
2015-01-20 16:38 ` [PATCH 01/36] tools build: Add new build support Jiri Olsa
2015-01-20 16:38 ` [PATCH 02/36] tools build: Add detected config support Jiri Olsa
2015-01-20 16:39 ` [PATCH 03/36] tools build: Add subdir support Jiri Olsa
2015-01-20 16:39 ` [PATCH 04/36] perf tools: Remove api fs object from python build Jiri Olsa
2015-01-20 16:39 ` [PATCH 05/36] perf build: Disable make's built-in rules Jiri Olsa
2015-01-20 16:39 ` [PATCH 06/36] perf build: Add bench objects building Jiri Olsa
2015-01-20 16:39 ` [PATCH 07/36] perf build: Add tests " Jiri Olsa
2015-01-20 16:39 ` [PATCH 08/36] perf build: Add builtin " Jiri Olsa
2015-01-21 18:52 ` David Ahern
2015-01-21 19:12 ` Jiri Olsa
2015-01-21 19:18 ` David Ahern
2015-01-21 19:22 ` Jiri Olsa
2015-01-20 16:39 ` [PATCH 09/36] perf build: Add libperf " Jiri Olsa
2015-01-20 16:39 ` [PATCH 10/36] perf build: Add probe " Jiri Olsa
2015-01-20 16:39 ` [PATCH 11/36] perf build: Add dwarf " Jiri Olsa
2015-01-20 16:39 ` [PATCH 12/36] perf build: Add dwarf unwind " Jiri Olsa
2015-01-20 16:39 ` [PATCH 13/36] perf build: Add ui " Jiri Olsa
2015-01-20 16:39 ` [PATCH 14/36] perf build: Add slang " Jiri Olsa
2015-01-20 16:39 ` [PATCH 15/36] perf build: Add gtk " Jiri Olsa
2015-01-20 16:39 ` [PATCH 16/36] perf build: Add scripts " Jiri Olsa
2015-01-20 16:39 ` [PATCH 17/36] perf build: Add perf regs " Jiri Olsa
2015-01-20 16:39 ` [PATCH 18/36] perf build: Add zlib " Jiri Olsa
2015-01-20 16:39 ` [PATCH 19/36] perf build: Add perf.o object building Jiri Olsa
2015-01-20 16:39 ` [PATCH 20/36] perf build: Add arch x86 objects building Jiri Olsa
2015-01-21 21:17 ` David Ahern
2015-01-21 21:31 ` Jiri Olsa
2015-01-21 21:45 ` David Ahern
2015-01-22 11:32 ` Jiri Olsa
2015-01-20 16:39 ` [PATCH 21/36] perf build: Add arch arm " Jiri Olsa
2015-01-20 16:39 ` [PATCH 22/36] perf build: Add arch arm64 " Jiri Olsa
2015-01-20 16:39 ` [PATCH 23/36] perf build: Add arch powerpc " Jiri Olsa
2015-01-20 16:39 ` [PATCH 24/36] perf build: Add arch s390 " Jiri Olsa
2015-01-20 16:39 ` [PATCH 25/36] perf build: Add arch sh " Jiri Olsa
2015-01-20 16:39 ` [PATCH 26/36] perf build: Add arch sparc " Jiri Olsa
2015-01-20 16:39 ` [PATCH 27/36] perf build: Add single target build framework support Jiri Olsa
2015-01-20 16:39 ` [PATCH 28/36] perf build: Remove directory dependency rules Jiri Olsa
2015-01-20 16:39 ` [PATCH 29/36] perf build: Remove uneeded variables Jiri Olsa
2015-01-20 16:39 ` [PATCH 30/36] perf build: Remove PERF-CFLAGS file Jiri Olsa
2015-01-20 16:39 ` [PATCH 31/36] perf build: Add build documentation Jiri Olsa
2015-01-20 16:39 ` [PATCH 32/36] tools lib api: Use tools build framework Jiri Olsa
2015-01-20 16:39 ` [PATCH 33/36] tools lib api: Rename libapikfs.a to libapi.a Jiri Olsa
2015-01-20 16:39 ` [PATCH 34/36] tools lib traceevent: Use tools build framework Jiri Olsa
2015-01-20 16:39 ` [PATCH 35/36] tools lib lockdep: " Jiri Olsa
2015-01-20 16:39 ` [PATCH 36/36] perf build: Display make commands on V=1 Jiri Olsa
2015-01-20 23:02 ` [PATCHv3 00/36] perf tools: New build framework David Ahern
2015-01-21 6:14 ` Ingo Molnar
2015-01-21 12:03 ` Jiri Olsa
2015-01-21 6:13 ` Ingo Molnar
2015-01-21 12:01 ` Jiri Olsa [this message]
2015-01-21 17:25 ` Will Deacon
2015-01-26 9:21 ` Jiri Olsa
2015-01-21 23:30 ` Sukadev Bhattiprolu
2015-01-26 9:20 ` Jiri Olsa
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=20150121120154.GA7869@krava.brq.redhat.com \
--to=jolsa@redhat.com \
--cc=acme@redhat.com \
--cc=adrian.hunter@intel.com \
--cc=ak@linux.intel.com \
--cc=alexis.berlemont@gmail.com \
--cc=anton@samba.org \
--cc=bp@alien8.de \
--cc=bp@suse.de \
--cc=cjashfor@linux.vnet.ibm.com \
--cc=cody@linux.vnet.ibm.com \
--cc=dsahern@gmail.com \
--cc=eranian@google.com \
--cc=florian@openwrt.org \
--cc=fweisbec@gmail.com \
--cc=heyleke@gmail.com \
--cc=jolsa@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=mingo@kernel.org \
--cc=msalter@redhat.com \
--cc=namhyung@kernel.org \
--cc=paulus@samba.org \
--cc=peterz@infradead.org \
--cc=rostedt@goodmis.org \
--cc=sam@ravnborg.org \
--cc=sasha.levin@oracle.com \
--cc=sjl@vctlabs.com \
--cc=sukadev@linux.vnet.ibm.com \
--cc=will.deacon@arm.com \
--subject='Re: [PATCHv3 00/36] perf tools: New build framework' \
/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
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).