<?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>6a6fac11 - perf jvmti: Link against tools/lib/ctype.h to have weak strlcpy()</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/perf/jvmti/Build#6a6fac11</link>
        <description>perf jvmti: Link against tools/lib/ctype.h to have weak strlcpy()The build of file libperf-jvmti.so succeeds but the resultingobject fails to load: # ~/linux/tools/perf/perf record -k mono -- java  \      -XX:+PreserveFramePointer \      -agentpath:/root/linux/tools/perf/libperf-jvmti.so \       hog 100000 123450  Error occurred during initialization of VM  Could not find agent library /root/linux/tools/perf/libperf-jvmti.so      in absolute path, with error:      /root/linux/tools/perf/libperf-jvmti.so: undefined symbol: _ctypeAdd the missing _ctype symbol into the build script.Fixes: 79743bc927f6 (&quot;perf jvmti: Link against tools/lib/string.o to have weak strlcpy()&quot;)Signed-off-by: Thomas Richter &lt;tmricht@linux.ibm.com&gt;Cc: Heiko Carstens &lt;heiko.carstens@de.ibm.com&gt;Cc: Vasily Gorbik &lt;gor@linux.ibm.com&gt;Link: http://lore.kernel.org/lkml/20191008093841.59387-1-tmricht@linux.ibm.comSigned-off-by: Arnaldo Carvalho de Melo &lt;acme@redhat.com&gt;

            List of files:
            /linux-6.15/tools/perf/jvmti/Build</description>
        <pubDate>Tue, 08 Oct 2019 09:38:41 +0000</pubDate>
        <dc:creator>Thomas Richter &lt;tmricht@linux.ibm.com&gt;</dc:creator>
    </item>
<item>
        <title>5fb470bc - perf jvmti: Link against tools/lib/ctype.h to have weak strlcpy()</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/perf/jvmti/Build#5fb470bc</link>
        <description>perf jvmti: Link against tools/lib/ctype.h to have weak strlcpy()The build of file libperf-jvmti.so succeeds but the resultingobject fails to load: # ~/linux/tools/perf/perf record -k mono -- java  \      -XX:+PreserveFramePointer \      -agentpath:/root/linux/tools/perf/libperf-jvmti.so \       hog 100000 123450  Error occurred during initialization of VM  Could not find agent library /root/linux/tools/perf/libperf-jvmti.so      in absolute path, with error:      /root/linux/tools/perf/libperf-jvmti.so: undefined symbol: _ctypeAdd the missing _ctype symbol into the build script.Fixes: 79743bc927f6 (&quot;perf jvmti: Link against tools/lib/string.o to have weak strlcpy()&quot;)Signed-off-by: Thomas Richter &lt;tmricht@linux.ibm.com&gt;Cc: Heiko Carstens &lt;heiko.carstens@de.ibm.com&gt;Cc: Vasily Gorbik &lt;gor@linux.ibm.com&gt;Link: http://lore.kernel.org/lkml/20191008093841.59387-1-tmricht@linux.ibm.comSigned-off-by: Arnaldo Carvalho de Melo &lt;acme@redhat.com&gt;

            List of files:
            /linux-6.15/tools/perf/jvmti/Build</description>
        <pubDate>Tue, 08 Oct 2019 09:38:41 +0000</pubDate>
        <dc:creator>Thomas Richter &lt;tmricht@linux.ibm.com&gt;</dc:creator>
    </item>
<item>
        <title>79743bc9 - perf jvmti: Link against tools/lib/string.o to have weak strlcpy()</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/perf/jvmti/Build#79743bc9</link>
        <description>perf jvmti: Link against tools/lib/string.o to have weak strlcpy()That is needed in systems such some S/390 distros.  $ readelf -s /tmp/build/perf/jvmti/jvmti-in.o | grep strlcpy	452: 0000000000002990   125 FUNC    WEAK   DEFAULT  119 strlcpy  $Thanks to Jiri Olsa for fixing up my initial stab at this, I forgot howMakefiles are picky about spaces versus tabs.Reported-by: Thomas Richter &lt;tmricht@linux.ibm.com&gt;Cc: Adrian Hunter &lt;adrian.hunter@intel.com&gt;Cc: Andreas Krebbel &lt;krebbel@linux.ibm.com&gt;Cc: Jiri Olsa &lt;jolsa@kernel.org&gt;Cc: Namhyung Kim &lt;namhyung@kernel.org&gt;Cc: Sergey Melnikov &lt;melnikov.sergey.v@gmail.com&gt;Link: https://lkml.kernel.org/n/tip-x8vg9sffgb2t1tzqmhkrulh7@git.kernel.orgSigned-off-by: Arnaldo Carvalho de Melo &lt;acme@redhat.com&gt;

            List of files:
            /linux-6.15/tools/perf/jvmti/Build</description>
        <pubDate>Mon, 02 Sep 2019 18:37:21 +0000</pubDate>
        <dc:creator>Arnaldo Carvalho de Melo &lt;acme@redhat.com&gt;</dc:creator>
    </item>
<item>
        <title>d4dfdf00 - perf jvmti: Plug compilation into perf build</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/perf/jvmti/Build#d4dfdf00</link>
        <description>perf jvmti: Plug compilation into perf buildCompile jvmti agent as part of the perf build. The agent library iscalled libperf-jvmti.so and is installed in default place together withother files:  $ make libperf-jvmti.so    BUILD:   Doing &apos;make -j4&apos; parallel build    ...    CC       jvmti/libjvmti.o    CC       jvmti/jvmti_agent.o    LD       jvmti/jvmti-in.o    LINK     libperf-jvmti.so  $ make DESTDIR=/tmp/krava/ install-bin  ...  $ find /tmp/krava/ | grep libperf  /tmp/krava/lib64/libperf-jvmti.so  /tmp/krava/lib64/libperf-gtk.soSigned-off-by: Jiri Olsa &lt;jolsa@kernel.org&gt;Tested-by: Arnaldo Carvalho de Melo &lt;acme@redhat.com&gt;Tested-by: Stephane Eranian &lt;eranian@google.com&gt;Cc: Andi Kleen &lt;andi@firstfloor.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;Cc: William Cohen &lt;wcohen@redhat.com&gt;Link: http://lkml.kernel.org/r/1478093749-5602-4-git-send-email-jolsa@kernel.orgSigned-off-by: Arnaldo Carvalho de Melo &lt;acme@redhat.com&gt;

            List of files:
            /linux-6.15/tools/perf/jvmti/Build</description>
        <pubDate>Wed, 02 Nov 2016 13:35:49 +0000</pubDate>
        <dc:creator>Jiri Olsa &lt;jolsa@kernel.org&gt;</dc:creator>
    </item>
</channel>
</rss>
