<?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>bf71940f - objtool: Hide unnecessary compiler error message</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/objtool/Makefile#bf71940f</link>
        <description>objtool: Hide unnecessary compiler error messageThe check for using old libelf prints an error message when libelf.h isnot available but does not abort. This may confuse so hide the compilererror message.Signed-off-by: David Engraf &lt;david.engraf@sysgo.com&gt;Link: https://lore.kernel.org/r/20250203073610.206000-1-david.engraf@sysgo.comSigned-off-by: Josh Poimboeuf &lt;jpoimboe@kernel.org&gt;

            List of files:
            /linux-6.15/tools/objtool/Makefile</description>
        <pubDate>Mon, 03 Feb 2025 07:36:10 +0000</pubDate>
        <dc:creator>David Engraf &lt;david.engraf@sysgo.com&gt;</dc:creator>
    </item>
<item>
        <title>42367eca - tools: Remove redundant quiet setup</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/objtool/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/objtool/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>32b50485 - objtool: Also include tools/include/uapi</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/objtool/Makefile#32b50485</link>
        <description>objtool: Also include tools/include/uapiWhen building objtool against a sysroot that contains a stripped downversion of the UAPI headers, the following error happens:    In file included from arch/x86/decode.c:10:    In file included from .../tools/arch/x86/include/asm/insn.h:10:    In file included from &lt;sysroot&gt;/include/asm/byteorder.h:9:    In file included from &lt;sysroot&gt;/include/linux/byteorder/little_endian.h:15:    In file included from &lt;sysroot&gt;/include/linux/stddef.h:9:    In file included from .../tools/include/linux/compiler_types.h:36:    .../tools/include/linux/compiler-gcc.h:3:2: error: &quot;Please don&apos;t include &lt;linux/compiler-gcc.h&gt; directly, include &lt;linux/compiler.h&gt; instead.&quot;        3 | #error &quot;Please don&apos;t include &lt;linux/compiler-gcc.h&gt; directly, include &lt;linux/compiler.h&gt; instead.&quot;        |  ^    1 error generated.As hinted by the error, this is because &lt;sysroot&gt;/include/linux/stddef.h(a stripped-down version of uapi/include/linux/stddef.h) includeslinux/compiler_types.h directly. However, this gets resolved totools/include/linux/compiler_types.h, which is not expected to beincluded directly.To resolve this, I added tools/include/uapi to the include paths whenbuilding objtool. With this trick, linux/stddef.h is resolved totools/include/uapi/linux/stddef.h, which doesn&apos;t includelinux/compiler_types.h.Signed-off-by: HONG Yifan &lt;elsk@google.com&gt;Signed-off-by: Josh Poimboeuf &lt;jpoimboe@kernel.org&gt;

            List of files:
            /linux-6.15/tools/objtool/Makefile</description>
        <pubDate>Tue, 08 Oct 2024 23:47:17 +0000</pubDate>
        <dc:creator>HONG Yifan &lt;elsk@google.com&gt;</dc:creator>
    </item>
<item>
        <title>3c7266cd - objtool/LoongArch: Enable orc to be built</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/objtool/Makefile#3c7266cd</link>
        <description>objtool/LoongArch: Enable orc to be builtImplement arch-specific init_orc_entry(), write_orc_entry(), reg_name(),orc_type_name(), print_reg() and orc_print_dump(), then set BUILD_ORC asy to build the orc related files.Co-developed-by: Jinyang He &lt;hejinyang@loongson.cn&gt;Signed-off-by: Jinyang He &lt;hejinyang@loongson.cn&gt;Co-developed-by: Youling Tang &lt;tangyouling@loongson.cn&gt;Signed-off-by: Youling Tang &lt;tangyouling@loongson.cn&gt;Signed-off-by: Tiezhu Yang &lt;yangtiezhu@loongson.cn&gt;Signed-off-by: Huacai Chen &lt;chenhuacai@loongson.cn&gt;

            List of files:
            /linux-6.15/tools/objtool/Makefile</description>
        <pubDate>Mon, 11 Mar 2024 14:23:47 +0000</pubDate>
        <dc:creator>Tiezhu Yang &lt;yangtiezhu@loongson.cn&gt;</dc:creator>
    </item>
<item>
        <title>cd955bdd - objtool: Fix HOSTCC flag usage</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/objtool/Makefile#cd955bdd</link>
        <description>objtool: Fix HOSTCC flag usageHOSTCC is always wanted when building objtool. Setting CC to HOSTCChappens after tools/scripts/Makefile.include is included, meaningflags (like CFLAGS) are set assuming say CC is gcc, but then it can belater set to HOSTCC which may be clang. tools/scripts/Makefile.includeis needed for host set up and common macros in objtool&apos;sMakefile. Rather than override the CC variable to HOSTCC, just pass CCas HOSTCC to the sub-makes of Makefile.build, the libsubcmd builds andalso to the linkage step.Signed-off-by: Ian Rogers &lt;irogers@google.com&gt;Link: https://lore.kernel.org/r/20230126190606.40739-4-irogers@google.comSigned-off-by: Josh Poimboeuf &lt;jpoimboe@kernel.org&gt;

            List of files:
            /linux-6.15/tools/objtool/Makefile</description>
        <pubDate>Thu, 26 Jan 2023 19:06:06 +0000</pubDate>
        <dc:creator>Ian Rogers &lt;irogers@google.com&gt;</dc:creator>
    </item>
<item>
        <title>8c4526ca - objtool: Properly support make V=1</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/objtool/Makefile#8c4526ca</link>
        <description>objtool: Properly support make V=1The Q variable was being used but never correctly set up. Add thesetting up and use in place of @.Signed-off-by: Ian Rogers &lt;irogers@google.com&gt;Link: https://lore.kernel.org/r/20230126190606.40739-3-irogers@google.comSigned-off-by: Josh Poimboeuf &lt;jpoimboe@kernel.org&gt;

            List of files:
            /linux-6.15/tools/objtool/Makefile</description>
        <pubDate>Thu, 26 Jan 2023 19:06:05 +0000</pubDate>
        <dc:creator>Ian Rogers &lt;irogers@google.com&gt;</dc:creator>
    </item>
<item>
        <title>bdb8bf7d - objtool: Install libsubcmd in build</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/objtool/Makefile#bdb8bf7d</link>
        <description>objtool: Install libsubcmd in buildIncluding from tools/lib can create inadvertent dependencies. Installlibsubcmd in the objtool build and then include the headers fromthere.Signed-off-by: Ian Rogers &lt;irogers@google.com&gt;Link: https://lore.kernel.org/r/20230126190606.40739-2-irogers@google.comSigned-off-by: Josh Poimboeuf &lt;jpoimboe@kernel.org&gt;

            List of files:
            /linux-6.15/tools/objtool/Makefile</description>
        <pubDate>Thu, 26 Jan 2023 19:06:04 +0000</pubDate>
        <dc:creator>Ian Rogers &lt;irogers@google.com&gt;</dc:creator>
    </item>
<item>
        <title>4bc78005 - objtool: Remove libsubcmd.a when make clean</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/objtool/Makefile#4bc78005</link>
        <description>objtool: Remove libsubcmd.a when make cleanThe file libsubcmd.a still exists after make clean, remove it.Signed-off-by: Tiezhu Yang &lt;yangtiezhu@loongson.cn&gt;Signed-off-by: Josh Poimboeuf &lt;jpoimboe@kernel.org&gt;Link: https://lore.kernel.org/r/1652258270-6278-3-git-send-email-yangtiezhu@loongson.cn

            List of files:
            /linux-6.15/tools/objtool/Makefile</description>
        <pubDate>Wed, 11 May 2022 08:37:50 +0000</pubDate>
        <dc:creator>Tiezhu Yang &lt;yangtiezhu@loongson.cn&gt;</dc:creator>
    </item>
<item>
        <title>f193c32c - objtool: Remove inat-tables.c when make clean</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/objtool/Makefile#f193c32c</link>
        <description>objtool: Remove inat-tables.c when make cleanWhen build objtool on x86, the generated file inat-tables.c is inarch/x86/lib instead of arch/x86, use the correct dir to remove itwhen make clean.$ cd tools/objtool$ make[...]  GEN     arch/x86/lib/inat-tables.c[...]Signed-off-by: Tiezhu Yang &lt;yangtiezhu@loongson.cn&gt;Signed-off-by: Josh Poimboeuf &lt;jpoimboe@kernel.org&gt;Link: https://lore.kernel.org/r/1652258270-6278-2-git-send-email-yangtiezhu@loongson.cn

            List of files:
            /linux-6.15/tools/objtool/Makefile</description>
        <pubDate>Wed, 11 May 2022 08:37:49 +0000</pubDate>
        <dc:creator>Tiezhu Yang &lt;yangtiezhu@loongson.cn&gt;</dc:creator>
    </item>
<item>
        <title>b51277eb - objtool: Ditch subcommands</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/objtool/Makefile#b51277eb</link>
        <description>objtool: Ditch subcommandsObjtool has a fairly singular focus.  It runs on object files and doesvalidations and transformations which can be combined in various ways.The subcommand model has never been a good fit, making it awkward tocombine and remove options.Remove the &quot;check&quot; and &quot;orc&quot; subcommands in favor of a more traditionalcmdline option model.  This makes it much more flexible to use, andeasier to port individual features to other arches.Signed-off-by: Josh Poimboeuf &lt;jpoimboe@redhat.com&gt;Signed-off-by: Peter Zijlstra (Intel) &lt;peterz@infradead.org&gt;Reviewed-by: Miroslav Benes &lt;mbenes@suse.cz&gt;Link: https://lkml.kernel.org/r/5c61ebf805e90aefc5fa62bc63468ffae53b9df6.1650300597.git.jpoimboe@redhat.com

            List of files:
            /linux-6.15/tools/objtool/Makefile</description>
        <pubDate>Mon, 18 Apr 2022 16:50:27 +0000</pubDate>
        <dc:creator>Josh Poimboeuf &lt;jpoimboe@redhat.com&gt;</dc:creator>
    </item>
<item>
        <title>d5ea4fec - kbuild: Allow kernel installation packaging to override pkg-config</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/objtool/Makefile#d5ea4fec</link>
        <description>kbuild: Allow kernel installation packaging to override pkg-configAdd HOSTPKG_CONFIG to allow tooling that builds the kernel to overridewhat pkg-config and parameters are used.Signed-off-by: Chun-Tse Shao &lt;ctshao@google.com&gt;Reviewed-by: Nick Desaulniers &lt;ndesaulniers@google.com&gt;Signed-off-by: Masahiro Yamada &lt;masahiroy@kernel.org&gt;

            List of files:
            /linux-6.15/tools/objtool/Makefile</description>
        <pubDate>Fri, 01 Apr 2022 23:18:02 +0000</pubDate>
        <dc:creator>Chun-Tse Shao &lt;ctshao@google.com&gt;</dc:creator>
    </item>
<item>
        <title>5c816641 - kbuild: replace $(if A,A,B) with $(or A,B)</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/objtool/Makefile#5c816641</link>
        <description>kbuild: replace $(if A,A,B) with $(or A,B)$(or ...) is available since GNU Make 3.81, and useful to shorten thecode in some places.Covert as follows:  $(if A,A,B)  --&gt;  $(or A,B)This patch also converts:  $(if A, A, B) --&gt; $(or A, B)Strictly speaking, the latter is not an equivalent conversion becauseGNU Make keeps spaces after commas; if A is not empty, $(if A, A, B)expands to &quot; A&quot;, while $(or A, B) expands to &quot;A&quot;.Anyway, preceding spaces are not significant in the code hunks I touched.Signed-off-by: Masahiro Yamada &lt;masahiroy@kernel.org&gt;Reviewed-by: Nicolas Schier &lt;nicolas@fjasle.eu&gt;

            List of files:
            /linux-6.15/tools/objtool/Makefile</description>
        <pubDate>Fri, 11 Feb 2022 05:14:11 +0000</pubDate>
        <dc:creator>Masahiro Yamada &lt;masahiroy@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>ab4e0744 - objtool: Refactor ORC section generation</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/objtool/Makefile#ab4e0744</link>
        <description>objtool: Refactor ORC section generationDecouple ORC entries from instructions.  This simplifies thecontrol/data flow, and is going to make it easier to support alternativeinstructions which change the stack layout.Signed-off-by: Josh Poimboeuf &lt;jpoimboe@redhat.com&gt;

            List of files:
            /linux-6.15/tools/objtool/Makefile</description>
        <pubDate>Thu, 17 Dec 2020 21:02:42 +0000</pubDate>
        <dc:creator>Josh Poimboeuf &lt;jpoimboe@redhat.com&gt;</dc:creator>
    </item>
<item>
        <title>7786032e - objtool: Rework header include paths</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/objtool/Makefile#7786032e</link>
        <description>objtool: Rework header include pathsCurrently objtool headers are being included either by their base nameor included via ../ from a parent directory. In case of a base name usage: #include &quot;warn.h&quot; #include &quot;arch_elf.h&quot;it does not make it apparent from which directory the file comes from.To make it slightly better, and actually to avoid name clashes some archspecific files have &quot;arch_&quot; suffix. And files from an arch folder haveto revert to including via ../ e.g: #include &quot;../../elf.h&quot;With additional architectures support and the code base growth there isa need for clearer headers naming scheme for multiple reasons:1. to make it instantly obvious where these files come from (objtool   itself / objtool arch|generic folders / some other external files),2. to avoid name clashes of objtool arch specific headers, potential   obtool arch generic headers and the system header files (there is   /usr/include/elf.h already),3. to avoid ../ includes and improve code readability.4. to give a warm fuzzy feeling to developers who are mostly kernel   developers and are accustomed to linux kernel headers arranging   scheme.Doesn&apos;t this make it instantly obvious where are these files come from? #include &lt;objtool/warn.h&gt; #include &lt;arch/elf.h&gt;And doesn&apos;t it look nicer to avoid ugly ../ includes? Which alsoguarantees this is elf.h from the objtool and not /usr/include/elf.h. #include &lt;objtool/elf.h&gt;This patch defines and implements new objtool headers arrangingscheme. Which is:- all generic headers go to include/objtool (similar to include/linux)- all arch headers go to arch/$(SRCARCH)/include/arch (to get arch  prefix). This is similar to linux arch specific &quot;asm/*&quot; headers but we  are not abusing &quot;asm&quot; name and calling it what it is. This also helps  to prevent name clashes (arch is not used in system headers or kernel  exports).To bring objtool to this state the following things are done:1. current top level tools/objtool/ headers are moved into   include/objtool/ subdirectory,2. arch specific headers, currently only arch/x86/include/ are moved into   arch/x86/include/arch/ and were stripped of &quot;arch_&quot; suffix,3. new -I$(srctree)/tools/objtool/include include path to make   includes like &lt;objtool/warn.h&gt; possible,4. rewriting file includes,5. make git not to ignore include/objtool/ subdirectory.Signed-off-by: Vasily Gorbik &lt;gor@linux.ibm.com&gt;Acked-by: Peter Zijlstra (Intel) &lt;peterz@infradead.org&gt;Acked-by: Masami Hiramatsu &lt;mhiramat@kernel.org&gt;Signed-off-by: Josh Poimboeuf &lt;jpoimboe@redhat.com&gt;

            List of files:
            /linux-6.15/tools/objtool/Makefile</description>
        <pubDate>Thu, 12 Nov 2020 23:03:32 +0000</pubDate>
        <dc:creator>Vasily Gorbik &lt;gor@linux.ibm.com&gt;</dc:creator>
    </item>
<item>
        <title>c8a950d0 - tools: Factor HOSTCC, HOSTLD, HOSTAR definitions</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/objtool/Makefile#c8a950d0</link>
        <description>tools: Factor HOSTCC, HOSTLD, HOSTAR definitionsSeveral Makefiles in tools/ need to define the host toolchain variables.Move their definition to tools/scripts/Makefile.includeSigned-off-by: Jean-Philippe Brucker &lt;jean-philippe@linaro.org&gt;Signed-off-by: Andrii Nakryiko &lt;andrii@kernel.org&gt;Acked-by: Jiri Olsa &lt;jolsa@redhat.com&gt;Acked-by: Rafael J. Wysocki &lt;rafael.j.wysocki@intel.com&gt;Link: https://lore.kernel.org/bpf/20201110164310.2600671-2-jean-philippe@linaro.org

            List of files:
            /linux-6.15/tools/objtool/Makefile</description>
        <pubDate>Tue, 10 Nov 2020 16:43:05 +0000</pubDate>
        <dc:creator>Jean-Philippe Brucker &lt;jean-philippe@linaro.org&gt;</dc:creator>
    </item>
<item>
        <title>2486baae - objtool: Allow nested externs to enable BUILD_BUG()</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/objtool/Makefile#2486baae</link>
        <description>objtool: Allow nested externs to enable BUILD_BUG()Currently BUILD_BUG() macro is expanded to smth like the following:   do {           extern void __compiletime_assert_0(void)                   __attribute__((error(&quot;BUILD_BUG failed&quot;)));           if (!(!(1)))                   __compiletime_assert_0();   } while (0);If used in a function body this obviously would produce build errorswith -Wnested-externs and -Werror.Build objtool with -Wno-nested-externs to enable BUILD_BUG() usage.Signed-off-by: Vasily Gorbik &lt;gor@linux.ibm.com&gt;Signed-off-by: Josh Poimboeuf &lt;jpoimboe@redhat.com&gt;

            List of files:
            /linux-6.15/tools/objtool/Makefile</description>
        <pubDate>Mon, 05 Oct 2020 15:50:28 +0000</pubDate>
        <dc:creator>Vasily Gorbik &lt;gor@linux.ibm.com&gt;</dc:creator>
    </item>
<item>
        <title>66734e32 - objtool: Define &apos;struct orc_entry&apos; only when needed</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/objtool/Makefile#66734e32</link>
        <description>objtool: Define &apos;struct orc_entry&apos; only when neededImplementation of ORC requires some definitions that are currentlyprovided by the target architecture headers. Do not depend on thesedefinitions when the orc subcommand is not implemented.This avoid requiring arches with no orc implementation to provide dummyorc definitions.Signed-off-by: Julien Thierry &lt;jthierry@redhat.com&gt;Reviewed-by: Miroslav Benes &lt;mbenes@suse.cz&gt;Signed-off-by: Josh Poimboeuf &lt;jpoimboe@redhat.com&gt;

            List of files:
            /linux-6.15/tools/objtool/Makefile</description>
        <pubDate>Tue, 25 Aug 2020 12:47:42 +0000</pubDate>
        <dc:creator>Julien Thierry &lt;jthierry@redhat.com&gt;</dc:creator>
    </item>
<item>
        <title>0decf1f8 - objtool: Enable compilation of objtool for all architectures</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/objtool/Makefile#0decf1f8</link>
        <description>objtool: Enable compilation of objtool for all architecturesObjtool currently only compiles for x86 architectures. This isfine as it presently does not support tooling for otherarchitectures. However, we would like to be able to convert otherkernel tools to run as objtool sub commands because they tooprocess ELF object files. This will allow us to convert toolssuch as recordmcount to use objtool&apos;s ELF code.Since much of recordmcount&apos;s ELF code is copy-paste code to/froma variety of other kernel tools (look at modpost for example) thismeans that if we can convert recordmcount we can convert more.We define weak definitions for subcommand entry functions and other weakdefinitions for shared functions critical to building existingsubcommands. These return 127 when the command is missing which signifytools that do not exist on all architectures.  In this case the &quot;check&quot;and &quot;orc&quot; tools do not exist on all architectures so we only add themfor x86. Future changes adding support for &quot;check&quot;, to arm64 forexample, can then modify the SUBCMD_CHECK variable when building forarm64.Objtool is not currently wired in to KConfig to be built for otherarchitectures because it&apos;s not needed for those architectures andthere are no commands it supports other than those for x86. As morecommand support is enabled on various architectures the necessaryKConfig changes can be made (e.g. adding &quot;STACK_VALIDATION&quot;) totrigger building objtool.[ jpoimboe: remove aliases, add __weak macro, add error messages ]Cc: Julien Thierry &lt;jthierry@redhat.com&gt;Signed-off-by: Matt Helsley &lt;mhelsley@vmware.com&gt;Signed-off-by: Josh Poimboeuf &lt;jpoimboe@redhat.com&gt;

            List of files:
            /linux-6.15/tools/objtool/Makefile</description>
        <pubDate>Tue, 19 May 2020 20:55:33 +0000</pubDate>
        <dc:creator>Matt Helsley &lt;mhelsley@vmware.com&gt;</dc:creator>
    </item>
<item>
        <title>6f8ca676 - objtool: Split out arch-specific CFI definitions</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/objtool/Makefile#6f8ca676</link>
        <description>objtool: Split out arch-specific CFI definitionsSome CFI definitions used by generic objtool code have no reason to varyfrom one architecture to another.  Keep those definitions in genericcode and move the arch-specific ones to a new arch-specific header.Signed-off-by: Julien Thierry &lt;jthierry@redhat.com&gt;Acked-by: Peter Zijlstra (Intel) &lt;peterz@infradead.org&gt;Reviewed-by: Miroslav Benes &lt;mbenes@suse.cz&gt;Signed-off-by: Josh Poimboeuf &lt;jpoimboe@redhat.com&gt;Signed-off-by: Ingo Molnar &lt;mingo@kernel.org&gt;

            List of files:
            /linux-6.15/tools/objtool/Makefile</description>
        <pubDate>Fri, 27 Mar 2020 15:28:46 +0000</pubDate>
        <dc:creator>Julien Thierry &lt;jthierry@redhat.com&gt;</dc:creator>
    </item>
<item>
        <title>aa584727 - objtool: Always do header sync check</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/tools/objtool/Makefile#aa584727</link>
        <description>objtool: Always do header sync checkCurrently, the check of tools files against kernel equivalent is onlydone after every object file has been built. This means one might fixbuild issues against outdated headers without seeing a warning aboutthis.Check headers before any object is built. Also, make it part of aFORCE&apos;d recipe so every attempt to build objtool will report theoutdated headers (if any).Signed-off-by: Julien Thierry &lt;jthierry@redhat.com&gt;Acked-by: Peter Zijlstra (Intel) &lt;peterz@infradead.org&gt;Reviewed-by: Miroslav Benes &lt;mbenes@suse.cz&gt;Signed-off-by: Josh Poimboeuf &lt;jpoimboe@redhat.com&gt;Signed-off-by: Ingo Molnar &lt;mingo@kernel.org&gt;

            List of files:
            /linux-6.15/tools/objtool/Makefile</description>
        <pubDate>Fri, 27 Mar 2020 15:28:38 +0000</pubDate>
        <dc:creator>Julien Thierry &lt;jthierry@redhat.com&gt;</dc:creator>
    </item>
</channel>
</rss>
