<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="/rss.xsl.xml"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
    <title>Changes in Build</title>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2015</copyright>
    <generator>Java</generator><item>
        <title>0c00c3fb - tools build: Add test for missing include</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/build/tests/ex/Build#0c00c3fb</link>
        <description>tools build: Add test for missing includeThe current build framework fails to cope with header file removal. Thereason is that the removed header file stays in the .cmd file targetrule and forces the build to fail.This issue is fixed and explained in the following patches.Adding a new build test that simulates header removal.Signed-off-by: Jiri Olsa &lt;jolsa@kernel.org&gt;Cc: David Ahern &lt;dsahern@gmail.com&gt;Cc: Namhyung Kim &lt;namhyung@kernel.org&gt;Cc: Peter Zijlstra &lt;a.p.zijlstra@chello.nl&gt;Link: http://lkml.kernel.org/r/1443004442-32660-3-git-send-email-jolsa@kernel.orgSigned-off-by: Arnaldo Carvalho de Melo &lt;acme@redhat.com&gt;

            List of files:
            /linux-6.15/tools/build/tests/ex/Build</description>
        <pubDate>Wed, 23 Sep 2015 10:33:57 +0000</pubDate>
        <dc:creator>Jiri Olsa &lt;jolsa@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>0bdede8a - tools build: Allow duplicate objects in the object list</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/build/tests/ex/Build#0bdede8a</link>
        <description>tools build: Allow duplicate objects in the object listIt&apos;s sometimes useful to specify the object affiliation to multipleconfig options like:  libperf-$(CONFIG_X86) += tsc.o  libperf-$(CONFIG_AUXTRACE) += tsc.owhile the object itself is linked only once. Adding the support for thisand ignoring duplicate objects in the object list.Suggested-by: Arnaldo Carvalho de Melo &lt;acme@kernel.org&gt;Signed-off-by: Jiri Olsa &lt;jolsa@kernel.org&gt;Cc: Adrian Hunter &lt;adrian.hunter@intel.com&gt;Cc: Sukadev Bhattiprolu &lt;sukadev@linux.vnet.ibm.com&gt;Link: http://lkml.kernel.org/r/20150826130103.GF22670@krava.redhat.comSigned-off-by: Arnaldo Carvalho de Melo &lt;acme@redhat.com&gt;

            List of files:
            /linux-6.15/tools/build/tests/ex/Build</description>
        <pubDate>Wed, 26 Aug 2015 13:01:03 +0000</pubDate>
        <dc:creator>Jiri Olsa &lt;jolsa@redhat.com&gt;</dc:creator>
    </item>
<item>
        <title>d7a3d85e - perf build: Do not fail on missing Build file</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/build/tests/ex/Build#d7a3d85e</link>
        <description>perf build: Do not fail on missing Build fileAllow nesting into directories without Build file. Currently we forceinclude of the Build file, which fails the build when the Build file ismissing.We already support empty *-in.o&apos; objects if there&apos;s nothing in thedirectory to be compiled, so we can just use it for missing Build filecases.Also adding this case under tests.Reported-by: Rabin Vincent &lt;rabin.vincent@axis.com&gt;Signed-off-by: Jiri Olsa &lt;jolsa@kernel.org&gt;Cc: David Ahern &lt;dsahern@gmail.com&gt;Cc: Namhyung Kim &lt;namhyung@kernel.org&gt;Cc: Paul Mackerras &lt;paulus@samba.org&gt;Cc: Peter Zijlstra &lt;a.p.zijlstra@chello.nl&gt;Cc: Rabin Vincent &lt;rabin.vincent@axis.com&gt;Link: http://lkml.kernel.org/r/1432914178-24086-1-git-send-email-jolsa@kernel.orgSigned-off-by: Arnaldo Carvalho de Melo &lt;acme@redhat.com&gt;

            List of files:
            /linux-6.15/tools/build/tests/ex/Build</description>
        <pubDate>Fri, 29 May 2015 15:42:58 +0000</pubDate>
        <dc:creator>Jiri Olsa &lt;jolsa@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>c819e2cf - tools build: Add new build support</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/build/tests/ex/Build#c819e2cf</link>
        <description>tools build: Add new build supportAdding new build framework into &apos;tools/build&apos; to be used by tools.There&apos;s no change for actual building at this point, it comes in thenext patches.The idea and more details are explained in the&apos;tools/build/Documentation/Build.txt&apos; file.I adopted everything from the kernel build system, with some changes toallow for multiple binaries build definitions.While the kernel&apos;s build output is single image (forget modules) we needto be able to build several binaries/libraries.The basic idea is that sser provides &apos;Build&apos; files with objectsdefinitions like:  perf-y += a.o  perf-y += b.o  libperf-y += c.o  libperf-y += d.oand the build framework outputs files:  perf-in.o    # a.o, b.o compiled in  libperf-in.o # c.o, d.o compiled inSigned-off-by: Jiri Olsa &lt;jolsa@kernel.org&gt;Tested-by: Sukadev Bhattiprolu &lt;sukadev@linux.vnet.ibm.com&gt;Tested-by: Will Deacon &lt;will.deacon@arm.com&gt;Cc: Alexis Berlemont &lt;alexis.berlemont@gmail.com&gt;Cc: Borislav Petkov &lt;bp@alien8.de&gt;Cc: Corey Ashford &lt;cjashfor@linux.vnet.ibm.com&gt;Cc: David Ahern &lt;dsahern@gmail.com&gt;Cc: Frederic Weisbecker &lt;fweisbec@gmail.com&gt;Cc: Namhyung Kim &lt;namhyung@kernel.org&gt;Cc: Paul Mackerras &lt;paulus@samba.org&gt;Cc: Peter Zijlstra &lt;peterz@infradead.org&gt;Cc: Stephane Eranian &lt;eranian@google.com&gt;Link: http://lkml.kernel.org/n/tip-fbj22h4av0otlxupwcmrxgpa@git.kernel.orgSigned-off-by: Arnaldo Carvalho de Melo &lt;acme@redhat.com&gt;

            List of files:
            /linux-6.15/tools/build/tests/ex/Build</description>
        <pubDate>Mon, 29 Dec 2014 12:51:45 +0000</pubDate>
        <dc:creator>Jiri Olsa &lt;jolsa@kernel.org&gt;</dc:creator>
    </item>
</channel>
</rss>
