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

            List of files:
            /freebsd-14.2/lib/libgcc_s/Makefile</description>
        <pubDate>Wed, 16 Aug 2023 17:55:03 +0000</pubDate>
        <dc:creator>Warner Losh &lt;imp@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>1ab9996f - libcompiler_rt/libgcc_s: Remove MIPS build glue.</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/lib/libgcc_s/Makefile#1ab9996f</link>
        <description>libcompiler_rt/libgcc_s: Remove MIPS build glue.Reviewed by:	emasteDifferential Revision:	https://reviews.freebsd.org/D39328

            List of files:
            /freebsd-14.2/lib/libgcc_s/Makefile</description>
        <pubDate>Wed, 29 Mar 2023 22:05:42 +0000</pubDate>
        <dc:creator>John Baldwin &lt;jhb@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>7bc797e3 - Add build system support for ASAN+UBSAN instrumentation</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/lib/libgcc_s/Makefile#7bc797e3</link>
        <description>Add build system support for ASAN+UBSAN instrumentationThis adds two new options WITH_ASAN/WITH_UBSAN that can be set toenable instrumentation of all binaries with AddressSanitizer and/orUndefinedBehaviourSanitizer. This current patch is almost sufficientto get a complete buildworld with sanitizer instrumentation but inorder to actually build and boot a system it depends on a few morefollow-up commits.Reviewed By:	brooks, kib, markjDifferential Revision: https://reviews.freebsd.org/D31043

            List of files:
            /freebsd-14.2/lib/libgcc_s/Makefile</description>
        <pubDate>Mon, 02 Aug 2021 08:48:21 +0000</pubDate>
        <dc:creator>Alex Richardson &lt;arichardson@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>7fa2f2a6 - Rename NO_WERROR -&gt; MK_WERROR=no</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/lib/libgcc_s/Makefile#7fa2f2a6</link>
        <description>Rename NO_WERROR -&gt; MK_WERROR=noAs suggested in D27598. This also supports MK_WERROR.clang=no andMK_WERROR.gcc=no to support the existing NO_WERROR.&lt;compiler&gt; uses.Reviewed By:	brooksDifferential Revision: https://reviews.freebsd.org/D27601

            List of files:
            /freebsd-14.2/lib/libgcc_s/Makefile</description>
        <pubDate>Wed, 06 Jan 2021 17:55:06 +0000</pubDate>
        <dc:creator>Alex Richardson &lt;Alexander.Richardson@cl.cam.ac.uk&gt;</dc:creator>
    </item>
<item>
        <title>371f3da6 - Remove the SYMVER build option.</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/lib/libgcc_s/Makefile#371f3da6</link>
        <description>Remove the SYMVER build option.This option was added as a transition aide when symbol versioning wasfirst added.  It was enabled by default in 2007 and is supported evenby the old GPLv2 binutils.  Trying to disable it currently fails tobuild in libc and at this point it isn&apos;t worth fixing the build.Reported by:	Michael DexterReviewed by:	impDifferential Revision:	https://reviews.freebsd.org/D24637

            List of files:
            /freebsd-14.2/lib/libgcc_s/Makefile</description>
        <pubDate>Thu, 30 Apr 2020 22:08:40 +0000</pubDate>
        <dc:creator>John Baldwin &lt;jhb@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>1fa29c42 - Fix LLVM libunwnwind _Unwind_Backtrace symbol version for ARM.</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/lib/libgcc_s/Makefile#1fa29c42</link>
        <description>Fix LLVM libunwnwind _Unwind_Backtrace symbol version for ARM.In original  GNU libgcc, _Unwind_Backtrace is published with GCC_3.3 versionfor all architectures but ARM. For ARM should be publishes with GCC_4.3.0version. This was originally omitted in r255095, fixed in r318024 and omittedaging in LLVM libunwind implementation in r354347.For ARM _Unwind_Backtrace should be published as default with GCC_4.3.0version , (because this is right original version) and again asnormal(not-default) with GCC_3.3 version (to maintain ABI compatibilitycompiled/linked with wrong pre r318024 libgcc)PR:	233664

            List of files:
            /freebsd-14.2/lib/libgcc_s/Makefile</description>
        <pubDate>Mon, 16 Dec 2019 14:08:49 +0000</pubDate>
        <dc:creator>Michal Meloun &lt;mmel@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>c8b5e3de - Fix llvm-libunwind userspace build on ARM</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/lib/libgcc_s/Makefile#c8b5e3de</link>
        <description>Fix llvm-libunwind userspace build on ARMGCC&apos;s libgcc exports a few ARM-specific symbols for ARM EABI, AEABI, orEHABI or whatever it&apos;s called.  Export the same ones from LLVM-libunwind&apos;slibgcc_s, on ARM.  As part of this, convert libgcc_s from a directVersion.map to one constructed from component Symbol.map files.  This allowsthe ARM-specific Symbol.map to be included only on ARM.Fix ARM-only oddities in struct name/aliases in LLVM-libunwind to matchnon-ARM definitions and ARM-specific expectations in libcxxrt /libcompiler_rt.No functional change intended for non-ARM architectures.This commit does not actually flip the switch for ARM defaults from libgccto llvm-libunwind, but makes it possible (to compile, anyway).

            List of files:
            /freebsd-14.2/lib/libgcc_s/Makefile</description>
        <pubDate>Tue, 05 Nov 2019 03:20:40 +0000</pubDate>
        <dc:creator>Conrad Meyer &lt;cem@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>9de4d0b1 - Fix build by escaping a line break.</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/lib/libgcc_s/Makefile#9de4d0b1</link>
        <description>Fix build by escaping a line break.PR:		225597Submitted by:	cbnfinley at gmail.comSponsored by:	The FreeBSD Foundation

            List of files:
            /freebsd-14.2/lib/libgcc_s/Makefile</description>
        <pubDate>Wed, 31 Jan 2018 21:41:42 +0000</pubDate>
        <dc:creator>Glen Barber &lt;gjb@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>2c4bb7e3 - Don&apos;t include long double routines on architectures with small long double.</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/lib/libgcc_s/Makefile#2c4bb7e3</link>
        <description>Don&apos;t include long double routines on architectures with small long double.Reviewed by:	emasteSponsored by:	DARPA / AFRLDifferential Revision:	https://reviews.freebsd.org/D13874

            List of files:
            /freebsd-14.2/lib/libgcc_s/Makefile</description>
        <pubDate>Wed, 31 Jan 2018 18:13:33 +0000</pubDate>
        <dc:creator>John Baldwin &lt;jhb@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>b0a39ef0 - Apply r315689 to lib/libgcc_s as well to unbreak the gcc xtoolchain build</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/lib/libgcc_s/Makefile#b0a39ef0</link>
        <description>Apply r315689 to lib/libgcc_s as well to unbreak the gcc xtoolchain buildlib/libgcc_s consumes lib/libcompiler_rt/Makefile*. The NO_WERROR.gcc inlib/libcompiler_rt/Makefile doesn&apos;t seem to have made a difference in beingable to build this, so sprinkle NO_WERROR.gcc here as well.MFC after:	3 daysReported by:	Jenkins (FreeBSD-head-amd64-gcc)Tested with:	amd64-gcc-6.3.0 (devel/amd64-xtoolchain-gcc)Sponsored by:	Dell EMC Isilon

            List of files:
            /freebsd-14.2/lib/libgcc_s/Makefile</description>
        <pubDate>Tue, 28 Mar 2017 19:01:01 +0000</pubDate>
        <dc:creator>Enji Cooper &lt;ngie@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>2f21ec01 - libgcc_s: add libc DT_NEEDED to fix underlinking</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/lib/libgcc_s/Makefile#2f21ec01</link>
        <description>libgcc_s: add libc DT_NEEDED to fix underlinkingPR:		216012Reported by:	jbeichMFC after:	1 weekSponsored by:	The FreeBSD Foundation

            List of files:
            /freebsd-14.2/lib/libgcc_s/Makefile</description>
        <pubDate>Fri, 13 Jan 2017 15:17:25 +0000</pubDate>
        <dc:creator>Ed Maste &lt;emaste@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>2ed1e385 - libcc_{s,eh}: build without SSP</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/lib/libgcc_s/Makefile#2ed1e385</link>
        <description>libcc_{s,eh}: build without SSPAs in the gnu/lib/libgcc Makefile:    libgcc is linked in last and thus cannot depend on ssp    symbols coming from earlier libraries. Disable stack protection    for this library.Reviewed by:	dimSponsored by:	The FreeBSD Foundation

            List of files:
            /freebsd-14.2/lib/libgcc_s/Makefile</description>
        <pubDate>Fri, 11 Nov 2016 23:28:07 +0000</pubDate>
        <dc:creator>Ed Maste &lt;emaste@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>0eaded92 - Spell &apos;PACKAGE&apos; correctly.</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/lib/libgcc_s/Makefile#0eaded92</link>
        <description>Spell &apos;PACKAGE&apos; correctly.Submitted by:	Kyle Evans, emasteMFC after:	3 daysSponsored by:	The FreeBSD Foundation

            List of files:
            /freebsd-14.2/lib/libgcc_s/Makefile</description>
        <pubDate>Fri, 11 Nov 2016 18:47:53 +0000</pubDate>
        <dc:creator>Glen Barber &lt;gjb@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>6430a5fd - Move the LLVM-based libgcc_s to /lib</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/lib/libgcc_s/Makefile#6430a5fd</link>
        <description>Move the LLVM-based libgcc_s to /libWhen enabled, it should install in the same location as the existinglibrary.Reported by:	antoine

            List of files:
            /freebsd-14.2/lib/libgcc_s/Makefile</description>
        <pubDate>Mon, 24 Oct 2016 14:56:13 +0000</pubDate>
        <dc:creator>Ed Maste &lt;emaste@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>bff20752 - libgcc_s: add libm dependencies from div{d,s,x}c3</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/lib/libgcc_s/Makefile#bff20752</link>
        <description>libgcc_s: add libm dependencies from div{d,s,x}c3compiler-rt&apos;s complex division support routines contain calls tocompiler builtins such as `__builtin_scalbnl`.  Unfortunately Clangturns these back into a call to `scalbnl`.For now link libm&apos;s C version of the required support routines.Reviewed by:	edSponsored by:	The FreeBSD FoundationDifferential Revision:	https://reviews.freebsd.org/D8190

            List of files:
            /freebsd-14.2/lib/libgcc_s/Makefile</description>
        <pubDate>Thu, 13 Oct 2016 19:18:00 +0000</pubDate>
        <dc:creator>Ed Maste &lt;emaste@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>49c5eacb - Introduce lib/libgcc_eh and lib/libgcc_s for LLVM&apos;s implementation</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/lib/libgcc_s/Makefile#49c5eacb</link>
        <description>Introduce lib/libgcc_eh and lib/libgcc_s for LLVM&apos;s implementationThey are not yet connected to the build, but I am adding them to allowfor easier testing, ports exp-runs, etc.Reviewed by:	edSponsored by:	The FreeBSD FoundationDifferential Revision:	https://reviews.freebsd.org/D8188

            List of files:
            /freebsd-14.2/lib/libgcc_s/Makefile</description>
        <pubDate>Thu, 13 Oct 2016 18:57:18 +0000</pubDate>
        <dc:creator>Ed Maste &lt;emaste@FreeBSD.org&gt;</dc:creator>
    </item>
</channel>
</rss>
