<?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 Makefile</title>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2015</copyright>
    <generator>Java</generator><item>
        <title>42367eca - tools: Remove redundant quiet setup</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/verification/rv/Makefile#42367eca</link>
        <description>tools: Remove redundant quiet setupQ is exported from Makefile.include so it is not necessary to manuallyset it.Reviewed-by: Jiri Olsa &lt;jolsa@kernel.org&gt;Signed-off-by: Charlie Jenkins &lt;charlie@rivosinc.com&gt;Acked-by: Andrii Nakryiko &lt;andrii@kernel.org&gt;Acked-by: Quentin Monnet &lt;qmo@kernel.org&gt;Cc: Adrian Hunter &lt;adrian.hunter@intel.com&gt;Cc: Alexander Shishkin &lt;alexander.shishkin@linux.intel.com&gt;Cc: Alexei Starovoitov &lt;ast@kernel.org&gt;Cc: Benjamin Tissoires &lt;bentiss@kernel.org&gt;Cc: Daniel Borkmann &lt;daniel@iogearbox.net&gt;Cc: Daniel Lezcano &lt;daniel.lezcano@linaro.org&gt;Cc: Eduard Zingerman &lt;eddyz87@gmail.com&gt;Cc: Hao Luo &lt;haoluo@google.com&gt;Cc: Ian Rogers &lt;irogers@google.com&gt;Cc: Ingo Molnar &lt;mingo@redhat.com&gt;Cc: Jiri Kosina &lt;jikos@kernel.org&gt;Cc: John Fastabend &lt;john.fastabend@gmail.com&gt;Cc: Josh Poimboeuf &lt;jpoimboe@kernel.org&gt;Cc: KP Singh &lt;kpsingh@kernel.org&gt;Cc: Lukasz Luba &lt;lukasz.luba@arm.com&gt;Cc: Mark Rutland &lt;mark.rutland@arm.com&gt;Cc: Martin KaFai Lau &lt;martin.lau@linux.dev&gt;Cc: Mykola Lysenko &lt;mykolal@fb.com&gt;Cc: Namhyung Kim &lt;namhyung@kernel.org&gt;Cc: Peter Zijlstra &lt;peterz@infradead.org&gt;Cc: Rafael J. Wysocki &lt;rafael@kernel.org&gt;Cc: Shuah Khan &lt;shuah@kernel.org&gt;Cc: Song Liu &lt;song@kernel.org&gt;Cc: Stanislav Fomichev &lt;sdf@google.com&gt;Cc: Steven Rostedt (VMware) &lt;rostedt@goodmis.org&gt;Cc: Yonghong Song &lt;yonghong.song@linux.dev&gt;Cc: Zhang Rui &lt;rui.zhang@intel.com&gt;Link: https://lore.kernel.org/r/20250213-quiet_tools-v3-2-07de4482a581@rivosinc.comSigned-off-by: Arnaldo Carvalho de Melo &lt;acme@redhat.com&gt;

            List of files:
            /linux-6.15/tools/verification/rv/Makefile</description>
        <pubDate>Thu, 13 Feb 2025 21:06:22 +0000</pubDate>
        <dc:creator>Charlie Jenkins &lt;charlie@rivosinc.com&gt;</dc:creator>
    </item>
<item>
        <title>012e4e77 - tools/verification: Use tools/build makefiles on rv</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/verification/rv/Makefile#012e4e77</link>
        <description>tools/verification: Use tools/build makefiles on rvUse tools/build/ makefiles to build rv, inheriting the benefits ofit. For example, having a proper way to handle dependencies.Link: https://lkml.kernel.org/r/2a38a8f7b8dc65fa790381ec9ab42fb62beb2e25.1710519524.git.bristot@kernel.orgCc: Arnaldo Carvalho de Melo &lt;acme@redhat.com&gt;Cc: Josh Poimboeuf &lt;jpoimboe@kernel.org&gt;Cc: John Kacur &lt;jkacur@redhat.com&gt;Cc: Namhyung Kim &lt;namhyung@kernel.org&gt;Cc: Jiri Olsa &lt;jolsa@kernel.org&gt;Suggested-by: Linus Torvalds &lt;torvalds@linux-foundation.org&gt;Signed-off-by: Daniel Bristot de Oliveira &lt;bristot@kernel.org&gt;

            List of files:
            /linux-6.15/tools/verification/rv/Makefile</description>
        <pubDate>Fri, 15 Mar 2024 16:44:05 +0000</pubDate>
        <dc:creator>Daniel Bristot de Oliveira &lt;bristot@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>f9b2c871 - tools/rv: Fix Makefile compiler options for clang</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/verification/rv/Makefile#f9b2c871</link>
        <description>tools/rv: Fix Makefile compiler options for clangThe following errors are showing up when compiling rv with clang: $ make HOSTCC=clang CC=clang LLVM_IAS=1 [...]  clang -O -g -DVERSION=\&quot;6.8.0-rc1\&quot; -flto=auto -ffat-lto-objects  -fexceptions -fstack-protector-strong -fasynchronous-unwind-tables  -fstack-clash-protection  -Wall -Werror=format-security  -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS  -Wno-maybe-uninitialized $(pkg-config --cflags libtracefs)  -I include   -c -o src/utils.o src/utils.c  clang: warning: optimization flag &apos;-ffat-lto-objects&apos; is not supported [-Wignored-optimization-argument]  warning: unknown warning option &apos;-Wno-maybe-uninitialized&apos;; did you mean &apos;-Wno-uninitialized&apos;? [-Wunknown-warning-option]  1 warning generated.  clang -o rv -ggdb  src/in_kernel.o src/rv.o src/trace.o src/utils.o $(pkg-config --libs libtracefs)  src/in_kernel.o: file not recognized: file format not recognized  clang: error: linker command failed with exit code 1 (use -v to see invocation)  make: *** [Makefile:110: rv] Error 1Solve these issues by:  - removing -ffat-lto-objects and -Wno-maybe-uninitialized if using clang  - informing the linker about -flto=autoLink: https://lkml.kernel.org/r/ed94a8ddc2ca8c8ef663cfb7ae9dd196c4a66b33.1707217097.git.bristot@kernel.orgCc: stable@vger.kernel.orgCc: Masami Hiramatsu &lt;mhiramat@kernel.org&gt;Cc: Nathan Chancellor &lt;nathan@kernel.org&gt;Cc: Nick Desaulniers &lt;ndesaulniers@google.com&gt;Cc: Bill Wendling &lt;morbo@google.com&gt;Cc: Justin Stitt &lt;justinstitt@google.com&gt;Fixes: 4bc4b131d44c (&quot;rv: Add rv tool&quot;)Suggested-by: Donald Zickus &lt;dzickus@redhat.com&gt;Signed-off-by: Daniel Bristot de Oliveira &lt;bristot@kernel.org&gt;

            List of files:
            /linux-6.15/tools/verification/rv/Makefile</description>
        <pubDate>Tue, 06 Feb 2024 11:05:33 +0000</pubDate>
        <dc:creator>Daniel Bristot de Oliveira &lt;bristot@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>afc70ccb - Documentation/rv: Add verification/rv man pages</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/verification/rv/Makefile#afc70ccb</link>
        <description>Documentation/rv: Add verification/rv man pagesAdd man pages for the rv command line, using the same scheme we usedin rtla.Link: https://lkml.kernel.org/r/e841d7cfbdfc3ebdaf7cbd40278571940145d829.1668180100.git.bristot@kernel.orgCc: Jonathan Corbet &lt;corbet@lwn.net&gt;Signed-off-by: Daniel Bristot de Oliveira &lt;bristot@kernel.org&gt;Signed-off-by: Steven Rostedt (Google) &lt;rostedt@goodmis.org&gt;

            List of files:
            /linux-6.15/tools/verification/rv/Makefile</description>
        <pubDate>Fri, 11 Nov 2022 15:53:07 +0000</pubDate>
        <dc:creator>Daniel Bristot de Oliveira &lt;bristot@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>4bc4b131 - rv: Add rv tool</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/verification/rv/Makefile#4bc4b131</link>
        <description>rv: Add rv toolThis is the (user-space) runtime verification tool, named rv.This tool aims to be the interface for in-kernel rv monitors, aswell as the home for monitors in user-space (online asynchronous),and in *eBPF.The tool receives a command as the first argument, the currentcommands are:  list	- list all available monitors  mon	- run a given monitorEach monitor is an independent piece of software inside thetool and can have their own arguments.There is no monitor implemented in this patch, it onlyadds the basic structure of the tool, based on rtla.  # rv --help    rv version 6.1.0-rc4: help    usage: rv command [-h] [command_options]	-h/--help: print this menu	command: run one of the following command:	  list: list all available monitors	  mon:  run a monitor	[command options]: each command has its own set of options		           run rv command -h for further information*dot2bpf is the next patch set, depends on this, doing cleanups.Link: https://lkml.kernel.org/r/fb51184f3b95aea0d7bfdc33ec09f4153aee84fa.1668180100.git.bristot@kernel.orgCc: Jonathan Corbet &lt;corbet@lwn.net&gt;Signed-off-by: Daniel Bristot de Oliveira &lt;bristot@kernel.org&gt;Signed-off-by: Steven Rostedt (Google) &lt;rostedt@goodmis.org&gt;

            List of files:
            /linux-6.15/tools/verification/rv/Makefile</description>
        <pubDate>Fri, 11 Nov 2022 15:53:05 +0000</pubDate>
        <dc:creator>Daniel Bristot de Oliveira &lt;bristot@kernel.org&gt;</dc:creator>
    </item>
</channel>
</rss>
