<?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>031beb4e - sys: Remove $FreeBSD$: one-line sh pattern</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/sys/modules/bios/smapi/Makefile#031beb4e</link>
        <description>sys: Remove $FreeBSD$: one-line sh patternRemove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/

            List of files:
            /freebsd-14.2/sys/modules/bios/smapi/Makefile</description>
        <pubDate>Wed, 16 Aug 2023 17:54:58 +0000</pubDate>
        <dc:creator>Warner Losh &lt;imp@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>ea96b3de - Retire CLANG_NO_IAS34</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/sys/modules/bios/smapi/Makefile#ea96b3de</link>
        <description>Retire CLANG_NO_IAS34CLANG_NO_IAS34 was introduced in r276696 to allow then-HEAD kernels tobe built with clang 3.4 in FreeBSD 10.  As FreeBSD 11 and later includesa version of Clang with a sufficiently capable integrated assembler wedo not need the workaround any longer.Sponsored by:	The FreeBSD Foundation

            List of files:
            /freebsd-14.2/sys/modules/bios/smapi/Makefile</description>
        <pubDate>Thu, 01 Nov 2018 23:11:47 +0000</pubDate>
        <dc:creator>Ed Maste &lt;emaste@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>193d9e76 - sys/modules: normalize .CURDIR-relative paths to SRCTOP</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/sys/modules/bios/smapi/Makefile#193d9e76</link>
        <description>sys/modules: normalize .CURDIR-relative paths to SRCTOPThis simplifies make output/logicTested with:	`cd sys/modules; make ALL_MODULES=` on amd64MFC after:	1 monthSponsored by:	Dell EMC Isilon

            List of files:
            /freebsd-14.2/sys/modules/bios/smapi/Makefile</description>
        <pubDate>Sat, 04 Mar 2017 10:10:17 +0000</pubDate>
        <dc:creator>Enji Cooper &lt;ngie@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>9aca3e0f - Clang&apos;s 3.5 integrated assembler now handles these files correctly (it</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/sys/modules/bios/smapi/Makefile#9aca3e0f</link>
        <description>Clang&apos;s 3.5 integrated assembler now handles these files correctly (ithas support for the .codeXX directives). However, it is desirable, fora time, to allow kernels to be built with clang 3.4. Historically, ithas been advantageous to allow stable X-1 to build kernels the oldway (so long as the impact of doing so is small), and this restoresthat ability.Also, centralize the addition of ${ASM_CFLAGS.${.IMPSRC}}, place it inkern.mk rather than kern.pre.mk so that all modules can benefit, andgive the same treatment to CFLAGS in kern.mk as well.

            List of files:
            /freebsd-14.2/sys/modules/bios/smapi/Makefile</description>
        <pubDate>Mon, 05 Jan 2015 12:28:22 +0000</pubDate>
        <dc:creator>Warner Losh &lt;imp@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>2a8af197 - Remove the clang -no-integrated-as workaround for smapi_bios.S, as clang</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/sys/modules/bios/smapi/Makefile#2a8af197</link>
        <description>Remove the clang -no-integrated-as workaround for smapi_bios.S, as clang3.5.0 now supports the assembly just fine.

            List of files:
            /freebsd-14.2/sys/modules/bios/smapi/Makefile</description>
        <pubDate>Thu, 01 Jan 2015 16:56:15 +0000</pubDate>
        <dc:creator>Dimitry Andric &lt;dim@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>d0345bb3 - Re-enable -Werror for these modules.  It is already enabled for the same</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/sys/modules/bios/smapi/Makefile#d0345bb3</link>
        <description>Re-enable -Werror for these modules.  It is already enabled for the samefiles when built as part of a kernel.

            List of files:
            /freebsd-14.2/sys/modules/bios/smapi/Makefile</description>
        <pubDate>Mon, 09 Jun 2014 20:48:38 +0000</pubDate>
        <dc:creator>John Baldwin &lt;jhb@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>07b202a8 - Define several extra macros in bsd.sys.mk and sys/conf/kern.pre.mk, to</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/sys/modules/bios/smapi/Makefile#07b202a8</link>
        <description>Define several extra macros in bsd.sys.mk and sys/conf/kern.pre.mk, toget rid of testing explicitly for clang (using ${CC:T:Mclang}) inindividual Makefiles.Instead, use the following extra macros, for use with clang:- NO_WERROR.clang       (disables -Werror)- NO_WCAST_ALIGN.clang  (disables -Wcast-align)- NO_WFORMAT.clang	(disables -Wformat and friends)- CLANG_NO_IAS		(disables integrated assembler)- CLANG_OPT_SMALL	(adds flags for extra small size optimizations)As a side effect, this enables setting CC/CXX/CPP in src.conf instead ofmake.conf!  For clang, use the following:CC=clangCXX=clang++CPP=clang-cppMFC after:	2 weeks

            List of files:
            /freebsd-14.2/sys/modules/bios/smapi/Makefile</description>
        <pubDate>Tue, 28 Feb 2012 18:30:18 +0000</pubDate>
        <dc:creator>Dimitry Andric &lt;dim@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>2879ce1d - Add WERRROR= to work around the warnings</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/sys/modules/bios/smapi/Makefile#2879ce1d</link>
        <description>Add WERRROR= to work around the warnings

            List of files:
            /freebsd-14.2/sys/modules/bios/smapi/Makefile</description>
        <pubDate>Wed, 26 Jan 2005 16:29:07 +0000</pubDate>
        <dc:creator>Warner Losh &lt;imp@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>81d9009a - Add module infrastructure for &apos;vpd&apos; and &apos;smbios&apos; and move &apos;smbios&apos;</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/sys/modules/bios/smapi/Makefile#81d9009a</link>
        <description>Add module infrastructure for &apos;vpd&apos; and &apos;smbios&apos; and move &apos;smbios&apos;to new home.

            List of files:
            /freebsd-14.2/sys/modules/bios/smapi/Makefile</description>
        <pubDate>Sat, 29 Mar 2003 15:20:45 +0000</pubDate>
        <dc:creator>Matthew N. Dodd &lt;mdodd@FreeBSD.org&gt;</dc:creator>
    </item>
</channel>
</rss>
