<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="/source/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>e55db843ef45a8788f69e110d97210fb3968b92f - lib/msun: Added fmaximum and fminimum family. Tests and man page</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/lib/msun/tests/Makefile#e55db843ef45a8788f69e110d97210fb3968b92f</link>
        <description>lib/msun: Added fmaximum and fminimum family. Tests and man pageStarting from the existing fmax{,f,l} functions I&apos;ve added the fmaximumfamily, which handles NaN according to the newest standard (propagatingit).This commit is a PoC for GSoC 2026.Reviewed by:	fuz, karglMFC after:	1 monthDifferential Revision:	https://reviews.freebsd.org/D55834

            List of files:
            /freebsd/lib/msun/tests/Makefile</description>
        <pubDate>Tue, 31 Mar 2026 18:31:15 +0200</pubDate>
        <dc:creator>Jes&#250;s Bl&#225;zquez &lt;jesuscblazquez@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>e9ac41698b2f322d55ccf9da50a3596edb2c1800 - Remove residual blank line at start of Makefile</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/lib/msun/tests/Makefile#e9ac41698b2f322d55ccf9da50a3596edb2c1800</link>
        <description>Remove residual blank line at start of MakefileThis is a residual of the $FreeBSD$ removal.MFC After: 3 days (though I&apos;ll just run the command on the branches)Sponsored by: Netflix

            List of files:
            /freebsd/lib/msun/tests/Makefile</description>
        <pubDate>Mon, 15 Jul 2024 06:46:32 +0200</pubDate>
        <dc:creator>Warner Losh &lt;imp@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>d0b2dbfa0ecf2bbc9709efc5e20baf8e4b44bbbf - Remove $FreeBSD$: one-line sh pattern</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/lib/msun/tests/Makefile#d0b2dbfa0ecf2bbc9709efc5e20baf8e4b44bbbf</link>
        <description>Remove $FreeBSD$: one-line sh patternRemove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/

            List of files:
            /freebsd/lib/msun/tests/Makefile</description>
        <pubDate>Wed, 16 Aug 2023 19:55:03 +0200</pubDate>
        <dc:creator>Warner Losh &lt;imp@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>168234fa67c38f898b784b3265dd77ace0b0a2f9 - lib/msun: Exclude ignored-pragmas from -Werror</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/lib/msun/tests/Makefile#168234fa67c38f898b784b3265dd77ace0b0a2f9</link>
        <description>lib/msun: Exclude ignored-pragmas from -WerrorThis avoids build failures due to the clang 12 warning:    &apos;#pragma FENV_ACCESS&apos; is not supported on this target - ignoredClang 12 currently emits this warning for all non-x86 architectures.While this can result in incorrect code generation (e.g. on AArch64 someexceptions are not raised as expected), this is a pre-existing issue andwe should not fail the build due to this warning.Reviewed By:	dim, emasteMFC after:	1 weekDifferential Revision: https://reviews.freebsd.org/D29743

            List of files:
            /freebsd/lib/msun/tests/Makefile</description>
        <pubDate>Thu, 15 Apr 2021 17:27:52 +0200</pubDate>
        <dc:creator>Alex Richardson &lt;arichardson@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>f33b4fa2f0d4acf3978c7490b25c999b319c543b - lib/msun/tests: Drop WARNS=6</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/lib/msun/tests/Makefile#f33b4fa2f0d4acf3978c7490b25c999b319c543b</link>
        <description>lib/msun/tests: Drop WARNS=6This is the default already, so there is no need to override it.Reported by:	kevans

            List of files:
            /freebsd/lib/msun/tests/Makefile</description>
        <pubDate>Mon, 22 Mar 2021 17:56:10 +0100</pubDate>
        <dc:creator>Alex Richardson &lt;arichardson@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>dbb2d6f5e1231a9f6b49efdc720ce97b520da2ba - lib/msun/tests: Re-enable csqrt_test on AArch64</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/lib/msun/tests/Makefile#dbb2d6f5e1231a9f6b49efdc720ce97b520da2ba</link>
        <description>lib/msun/tests: Re-enable csqrt_test on AArch64The LLVM bug was fixed a long time ago and with D29076 this test actuallypasses now.Reviewed By:	andrewDifferential Revision: https://reviews.freebsd.org/D29092

            List of files:
            /freebsd/lib/msun/tests/Makefile</description>
        <pubDate>Mon, 22 Mar 2021 17:54:38 +0100</pubDate>
        <dc:creator>Alex Richardson &lt;arichardson@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>6ccdee8ab576577224fb9e4baed05bd0efe933fd - lib/msun/tests: Add more debug output to fenv_test.c</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/lib/msun/tests/Makefile#6ccdee8ab576577224fb9e4baed05bd0efe933fd</link>
        <description>lib/msun/tests: Add more debug output to fenv_test.cOutput a hex dump of the current fenv and the expected value to allowcomparing them without having to resort to interactive use of GDB.

            List of files:
            /freebsd/lib/msun/tests/Makefile</description>
        <pubDate>Thu, 04 Mar 2021 19:41:06 +0100</pubDate>
        <dc:creator>Alex Richardson &lt;arichardson@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>87d65c747a4389901c2bbbcb1ec4878b2df7b32c - lib/msun: Allow building tests with WARNS=6</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/lib/msun/tests/Makefile#87d65c747a4389901c2bbbcb1ec4878b2df7b32c</link>
        <description>lib/msun: Allow building tests with WARNS=6The only change needed is to mark a few variables as static.

            List of files:
            /freebsd/lib/msun/tests/Makefile</description>
        <pubDate>Thu, 25 Feb 2021 15:28:17 +0100</pubDate>
        <dc:creator>Alex Richardson &lt;arichardson@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>133bc645077d77ddb3c7d49130b4ec6fd93e7d34 - Convert the msun tests to ATF</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/lib/msun/tests/Makefile#133bc645077d77ddb3c7d49130b4ec6fd93e7d34</link>
        <description>Convert the msun tests to ATFThis provides better error messages that just an assertion failure andalso makes it easier to mark individual tests as XFAIL.It was also helpful when coming up with D28786 and D28787.Differential Revision: https://reviews.freebsd.org/D28798

            List of files:
            /freebsd/lib/msun/tests/Makefile</description>
        <pubDate>Mon, 22 Mar 2021 12:15:13 +0100</pubDate>
        <dc:creator>Alex Richardson &lt;arichardson@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>cf97d2a1dab8f2cddc4466fe64d37818339c73be - Build lib/msun tests with compiler builtins disabled</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/lib/msun/tests/Makefile#cf97d2a1dab8f2cddc4466fe64d37818339c73be</link>
        <description>Build lib/msun tests with compiler builtins disabledThis forces the compiler to emit calls to libm functions, instead ofpossibly substituting pre-calculated results at compile time, whichshould help to actually test those functions.Reviewed by:	emaste, arichardson, ngieDifferential Revision: https://reviews.freebsd.org/D28577MFC after:	3 days

            List of files:
            /freebsd/lib/msun/tests/Makefile</description>
        <pubDate>Tue, 23 Feb 2021 21:03:32 +0100</pubDate>
        <dc:creator>Dimitry Andric &lt;dim@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>1ec3feb64826d2a43d41e74684690985bf20e71c - Update libm tests from NetBSD</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/lib/msun/tests/Makefile#1ec3feb64826d2a43d41e74684690985bf20e71c</link>
        <description>Update libm tests from NetBSDI did this without a full vendor update since that would cause too manyconflicts. Since these files now almost match the NetBSD sources thenext git subtree merge should work just fine.Reviewed By:	lwhsuDifferential Revision: https://reviews.freebsd.org/D28797

            List of files:
            /freebsd/lib/msun/tests/Makefile</description>
        <pubDate>Mon, 22 Feb 2021 18:19:06 +0100</pubDate>
        <dc:creator>Alex Richardson &lt;arichardson@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>d3338f3355a612cf385632291f46c5777bba8d18 - Fix incorrect hypotl(3) result with subnormal numbers</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/lib/msun/tests/Makefile#d3338f3355a612cf385632291f46c5777bba8d18</link>
        <description>Fix incorrect hypotl(3) result with subnormal numbersThis adjusts the factor used to scale the subnormal numbers, so itbecomes the right value after adjusting its exponent. Thanks to SteveKargl for finding the most elegant fix.Also enable the hypot tests, and add a test case for this bug.PR:		253313MFC after:	1 week

            List of files:
            /freebsd/lib/msun/tests/Makefile</description>
        <pubDate>Wed, 10 Feb 2021 23:28:43 +0100</pubDate>
        <dc:creator>Dimitry Andric &lt;dim@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>e25152834cdf3b353892835a4f3b157e066a8ed4 - MFH</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/lib/msun/tests/Makefile#e25152834cdf3b353892835a4f3b157e066a8ed4</link>
        <description>MFHSponsored by:	Rubicon Communications, LLC (netgate.com)

            List of files:
            /freebsd/lib/msun/tests/Makefile</description>
        <pubDate>Thu, 27 Aug 2020 22:25:33 +0200</pubDate>
        <dc:creator>Glen Barber &lt;gjb@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>941791759c2cb64e4884579b7a7cc5fb21feec26 - Don&apos;t explicitly specify c99 or gnu99 as the default is now gnu99.</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/lib/msun/tests/Makefile#941791759c2cb64e4884579b7a7cc5fb21feec26</link>
        <description>Don&apos;t explicitly specify c99 or gnu99 as the default is now gnu99.MFC after:	2 weeks

            List of files:
            /freebsd/lib/msun/tests/Makefile</description>
        <pubDate>Mon, 17 Aug 2020 07:57:02 +0200</pubDate>
        <dc:creator>Xin LI &lt;delphij@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>2d143336dec8a43803bfba507c5f29a625bc4137 - Enable long double tests on RISC-V</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/lib/msun/tests/Makefile#2d143336dec8a43803bfba507c5f29a625bc4137</link>
        <description>Enable long double tests on RISC-VSome of the NetBSD contributed tests are gated behind the__HAVE_LONG_DOUBLE flag. This flag seems to be defined only forplatforms whose long double is larger than their double. I could notfind this explicitly documented anywhere, but it is implied by thedefinitions in NetBSD&apos;s sys/arch/${arch}/include/math.h headers, and thefollowing assertion from the UBSAN code:  #ifdef __HAVE_LONG_DOUBLE      long double LD;      ASSERT(sizeof(LD) &gt; sizeof(uint64_t));  #endifRISC-V has 128-bit long doubles, so enable the tests on this platform,and update the comments to better explain the purpose of this flag.Reviewed by:	ngieMFC after:	1 weekDifferential Revision:	https://reviews.freebsd.org/D25419

            List of files:
            /freebsd/lib/msun/tests/Makefile</description>
        <pubDate>Wed, 24 Jun 2020 15:11:19 +0200</pubDate>
        <dc:creator>Mitchell Horne &lt;mhorne@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>c5c3ba6b43cac20dc9432eac15758d41cb2b8b1f - Merge ^/head r351317 through r351731.</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/lib/msun/tests/Makefile#c5c3ba6b43cac20dc9432eac15758d41cb2b8b1f</link>
        <description>Merge ^/head r351317 through r351731.

            List of files:
            /freebsd/lib/msun/tests/Makefile</description>
        <pubDate>Tue, 03 Sep 2019 07:58:43 +0200</pubDate>
        <dc:creator>Dimitry Andric &lt;dim@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>24612bfd1f46f72d78024c60601faa677ba1d9f2 - Unskip test cases from netbsd-tests by defining __HAVE_FENV</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/lib/msun/tests/Makefile#24612bfd1f46f72d78024c60601faa677ba1d9f2</link>
        <description>Unskip test cases from netbsd-tests by defining __HAVE_FENVThis unskips:  - lib.libc.stdlib.strtod_test.strtod_round  - lib.msun.fe_round_test.t_nofe_roundIn lib/msun/tests/Makefile only define on fe_round_test.c becauselib.msun.ilogb_test.ilogb will get wrong results and needs more examination.MFC after:	1 weekSponsored by:	The FreeBSD Foundation

            List of files:
            /freebsd/lib/msun/tests/Makefile</description>
        <pubDate>Sat, 31 Aug 2019 22:45:45 +0200</pubDate>
        <dc:creator>Li-Wen Hsu &lt;lwhsu@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>b451efbedc317114030ccd54a3fc8378677ef631 - Resolve conflicts between macros in fenv.h and ieeefp.h</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/lib/msun/tests/Makefile#b451efbedc317114030ccd54a3fc8378677ef631</link>
        <description>Resolve conflicts between macros in fenv.h and ieeefp.hThis is a follow-up to r321483, which disabled -Wmacro-redefined forsome lib/msun tests.If an application included both fenv.h and ieeefp.h, several macros suchas __fldcw(), __fldenv() were defined in both headers, with slightlydifferent arguments, leading to conflicts.Fix this by putting all the common macros in the machine-specificversions of ieeefp.h.  Where needed, update the arguments in placeswhere the macros are invoked.This also slightly reduces the differences between the amd64 and i386versions of ieeefp.h.Reviewed by:	kibMFC after:	1 weekDifferential Revision: https://reviews.freebsd.org/D15633

            List of files:
            /freebsd/lib/msun/tests/Makefile</description>
        <pubDate>Thu, 31 May 2018 22:22:47 +0200</pubDate>
        <dc:creator>Dimitry Andric &lt;dim@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>0275f9dbf73b01e9478dc7d6ab5fab4f8e077448 - Merge ^/head r321383 through r322397.</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/lib/msun/tests/Makefile#0275f9dbf73b01e9478dc7d6ab5fab4f8e077448</link>
        <description>Merge ^/head r321383 through r322397.

            List of files:
            /freebsd/lib/msun/tests/Makefile</description>
        <pubDate>Fri, 11 Aug 2017 12:59:34 +0200</pubDate>
        <dc:creator>Hans Petter Selasky &lt;hselasky@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>69ef36e315772f884582ffc5ef888400fad61f52 - MFhead@r321829</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/lib/msun/tests/Makefile#69ef36e315772f884582ffc5ef888400fad61f52</link>
        <description>MFhead@r321829

            List of files:
            /freebsd/lib/msun/tests/Makefile</description>
        <pubDate>Tue, 01 Aug 2017 01:04:12 +0200</pubDate>
        <dc:creator>Enji Cooper &lt;ngie@FreeBSD.org&gt;</dc:creator>
    </item>
</channel>
</rss>
