<?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/csu/powerpc64/Makefile#d0b2dbfa</link>
        <description>Remove $FreeBSD$: one-line sh patternRemove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/

            List of files:
            /freebsd-14.2/lib/csu/powerpc64/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>51015e6d - csu: move common code to libc</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/lib/csu/powerpc64/Makefile#51015e6d</link>
        <description>csu: move common code to libcWhy? Most trivial point, it shaves around 600 bytes from the dynamicbinaries on amd64. Less trivial, the removed code is no longer part ofthe ABI, and we can ship updates to it with libc updates. Right now mostof the csu is linked into the binaries and require us to do somewhattricky ABI compat when it needs to change. For instance, the init_arraychange would be much simpler and does not require note tagging if wehave init calling code in libc.This could be improved more, by splitting dynamic and staticinitialization. For instance, &amp;_DYNAMIC tests can be removed then.Such change, nonetheless, would require building libc three times.I left this for later, after this change stabilizes, if ever.Reviewed by:	markjDiscussed with:	jrtc27 (some objections, see the review), impTested by:	markj (aarch64)Sponsored by:	The FreeBSD FoundationMFC after:	3 weeksDifferential revision:	https://reviews.freebsd.org/D37220

            List of files:
            /freebsd-14.2/lib/csu/powerpc64/Makefile</description>
        <pubDate>Sun, 30 Oct 2022 23:47:44 +0000</pubDate>
        <dc:creator>Konstantin Belousov &lt;kib@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>b0ee263d - Consolidate duplicated logic in csu Makefiles to lib/csu/Makefile.inc.</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/lib/csu/powerpc64/Makefile#b0ee263d</link>
        <description>Consolidate duplicated logic in csu Makefiles to lib/csu/Makefile.inc.Reviewed by:	kibSponsored by:	DARPADifferential Revision:	https://reviews.freebsd.org/D25537

            List of files:
            /freebsd-14.2/lib/csu/powerpc64/Makefile</description>
        <pubDate>Fri, 03 Jul 2020 00:09:41 +0000</pubDate>
        <dc:creator>John Baldwin &lt;jhb@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>99282790 - Remove the sed hack for ABI tag notes.</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/lib/csu/powerpc64/Makefile#99282790</link>
        <description>Remove the sed hack for ABI tag notes.The ELF notes compiled in C were placed in a section with the wrong type(SHT_PROGBITS instead of SHT_NOTE).  Previously, sed was used on thegenerated assembly to rewrite the section type.  Instead, write the notesin assembly which permits setting the correct section type directly.While here, move inline assembly entry points out of C and into assemblyfor aarch64, arm, and riscv.Reviewed by:	kibTested on:	amd64 (cirrus-ci), riscv64Sponsored by:	DARPADifferential Revision:	https://reviews.freebsd.org/D25211

            List of files:
            /freebsd-14.2/lib/csu/powerpc64/Makefile</description>
        <pubDate>Mon, 15 Jun 2020 19:38:48 +0000</pubDate>
        <dc:creator>John Baldwin &lt;jhb@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>4ff85ece - powerpc64/csu: Rename dummy asm file to force use of &apos;cc&apos;</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/lib/csu/powerpc64/Makefile#4ff85ece</link>
        <description>powerpc64/csu: Rename dummy asm file to force use of &apos;cc&apos;Implicit make rules build .S asm files with the compiler, rather than theassembler.  r356889 removed GNU as from the build for powerpc targets,causing &apos;.s&apos; asm files to fail to build, due to a missing &apos;as&apos;.  Rename theone dummy asm file we have to a &apos;.S&apos; to force the implicit rules to buildwith the compiler rather than the assembler.Reported by:	Francis Little

            List of files:
            /freebsd-14.2/lib/csu/powerpc64/Makefile</description>
        <pubDate>Wed, 29 Jan 2020 04:32:06 +0000</pubDate>
        <dc:creator>Justin Hibbits &lt;jhibbits@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>52b05d66 - [PPC64] Add ifunc support in libcsu</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/lib/csu/powerpc64/Makefile#52b05d66</link>
        <description>[PPC64] Add ifunc support in libcsuWhen ifuncs are used in statically linked binaries, the C runtimemust perform the needed dynamic relocations, to make calls to ifuncswork correctly.Reviewed by:	jhibbitsDifferential Revision:	https://reviews.freebsd.org/D21070

            List of files:
            /freebsd-14.2/lib/csu/powerpc64/Makefile</description>
        <pubDate>Thu, 12 Sep 2019 16:45:07 +0000</pubDate>
        <dc:creator>Leandro Lupori &lt;luporl@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>5d031e33 - Create crtsavres.o for powerpc builds</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/lib/csu/powerpc64/Makefile#5d031e33</link>
        <description>Create crtsavres.o for powerpc buildsSummary:GCC expects to link in a crtsavres.o on powerpc platforms.  Onpowerpc64 this is an empty file, but on powerpc and powerpcspe this does containsome save/restore functions, which may not actually be necessary for newermodern GCC and clang.  This appeases the in-tree gcc, though, and is needed inorder to switch to the BSD CRTRBEGIN.PR:	233751Reviewed By: andrewDifferential Revision: https://reviews.freebsd.org/D18826

            List of files:
            /freebsd-14.2/lib/csu/powerpc64/Makefile</description>
        <pubDate>Sat, 12 Jan 2019 21:29:54 +0000</pubDate>
        <dc:creator>Justin Hibbits &lt;jhibbits@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>bdafb02f - Process irelocs for statically linked binaries from crt1 on x86.</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/lib/csu/powerpc64/Makefile#bdafb02f</link>
        <description>Process irelocs for statically linked binaries from crt1 on x86.This makes statically linked binaries with ifuncs operational.Reported and tested by:	mjgReviewed by:	emaste, markjSponsored by:	The FreeBSD FoundationApproved by:	re (rgrimes)Differential revision:	https://reviews.freebsd.org/D17363

            List of files:
            /freebsd-14.2/lib/csu/powerpc64/Makefile</description>
        <pubDate>Sat, 13 Oct 2018 23:52:55 +0000</pubDate>
        <dc:creator>Konstantin Belousov &lt;kib@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>5944f899 - Rework r234502 to include a modified CFLAGS along with ACFLAGS.</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/lib/csu/powerpc64/Makefile#5944f899</link>
        <description>Rework r234502 to include a modified CFLAGS along with ACFLAGS.On most architectures crt objects are compiled in a multiple-step processso that sed can be run on the generated assembly.  As the final step,the C compiler generates an object file from the modified assembly output.Currently this last step uses $CC with only $ACFLAGS.  However, for otheruses in the tree, $ACFLAGS is meant to include assembly-specific compilerflags that are in addition to $CFLAGS (see default .S.o rulesbsd.suffixes.mk).  In particular, external toolchains may requireadditional flags to select a non-default target which will be presentin CFLAGS but not ACFLAGS.  To support this while still mitigating theissue with CFLAGS described in r234502, include a modified CFLAGS thatexcludes &quot;-g&quot; when assembling the modified assembly files.Note that normally an assembler ($AS) is used to assemble .s flags toobject files (see bsd.suffixes.mk).  However, llvm-based toolchains donot currently have a stand-alone assembler.Reviewed by:	impSponsored by:	DARPA / AFRLDifferential Revision:	https://reviews.freebsd.org/D10085

            List of files:
            /freebsd-14.2/lib/csu/powerpc64/Makefile</description>
        <pubDate>Fri, 07 Apr 2017 19:53:14 +0000</pubDate>
        <dc:creator>John Baldwin &lt;jhb@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>90b44255 - Clang in base now supports -mlongcall, so remove this hack</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/lib/csu/powerpc64/Makefile#90b44255</link>
        <description>Clang in base now supports -mlongcall, so remove this hackPR:		215947MFC after:	2 weeks

            List of files:
            /freebsd-14.2/lib/csu/powerpc64/Makefile</description>
        <pubDate>Tue, 07 Mar 2017 02:17:38 +0000</pubDate>
        <dc:creator>Justin Hibbits &lt;jhibbits@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>23f6875a - Use SRCTOP-relative paths and .CURDIR with :H instead of &quot;..&quot; specified paths</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/lib/csu/powerpc64/Makefile#23f6875a</link>
        <description>Use SRCTOP-relative paths and .CURDIR with :H instead of &quot;..&quot; specified pathsThis implifies pathing in make/displayed outputMFC after:    3 weeksSponsored by: Dell EMC Isilon

            List of files:
            /freebsd-14.2/lib/csu/powerpc64/Makefile</description>
        <pubDate>Fri, 20 Jan 2017 03:52:16 +0000</pubDate>
        <dc:creator>Enji Cooper &lt;ngie@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>de0fbc4d - Don&apos;t reset CC away from full-pathed gcc.</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/lib/csu/powerpc64/Makefile#de0fbc4d</link>
        <description>Don&apos;t reset CC away from full-pathed gcc.This was breaking the build when using CROSS_TOOLCHAIN=powerpc64-gccSponsored by:	EMC / Isilon Storage Division

            List of files:
            /freebsd-14.2/lib/csu/powerpc64/Makefile</description>
        <pubDate>Thu, 24 Mar 2016 21:48:10 +0000</pubDate>
        <dc:creator>Bryan Drewery &lt;bdrewery@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>7c6cc9de - Fix installation of 32bit libraries after r288074.</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/lib/csu/powerpc64/Makefile#7c6cc9de</link>
        <description>Fix installation of 32bit libraries after r288074.FILES is not used when LIBRARIES_ONLY is set, which is used to build andinstall the lib32 sysroot.  All of the csu files do quality as &quot;libraries&quot;for this case so just undefine LIBRARIES_ONLY.This is still better than the previous realinstall handling as it doesnot hook into META_MODE properly.Sponsored by:	EMC / Isilon Storage Division

            List of files:
            /freebsd-14.2/lib/csu/powerpc64/Makefile</description>
        <pubDate>Mon, 21 Sep 2015 21:44:02 +0000</pubDate>
        <dc:creator>Bryan Drewery &lt;bdrewery@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>5ca34122 - Replace realinstall: and META_MODE staging hacks with FILES mechanism.</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/lib/csu/powerpc64/Makefile#5ca34122</link>
        <description>Replace realinstall: and META_MODE staging hacks with FILES mechanism.This partially reverts r270170 for lib/csu/i386 while retaining thechange for using bsd.lib.mk.These FILES groups could go into lib/csu/Makefile.inc but I&apos;ve kept themin the Makefiles for clarity.Sponsored by:	EMC / Isilon Storage Division

            List of files:
            /freebsd-14.2/lib/csu/powerpc64/Makefile</description>
        <pubDate>Mon, 21 Sep 2015 18:39:13 +0000</pubDate>
        <dc:creator>Bryan Drewery &lt;bdrewery@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>4656c46d - Add a comment explaining why gcc is needed.</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/lib/csu/powerpc64/Makefile#4656c46d</link>
        <description>Add a comment explaining why gcc is needed.X-MFC-With:	278231MFC after:	2 weeks

            List of files:
            /freebsd-14.2/lib/csu/powerpc64/Makefile</description>
        <pubDate>Fri, 06 Feb 2015 02:35:29 +0000</pubDate>
        <dc:creator>Justin Hibbits &lt;jhibbits@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>35eeacca - powerpc64 csu needs to be built by gcc, so enforce that.</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/lib/csu/powerpc64/Makefile#35eeacca</link>
        <description>powerpc64 csu needs to be built by gcc, so enforce that.With this change, world is one step closer to being clang-able.MFC after:	2 weeks

            List of files:
            /freebsd-14.2/lib/csu/powerpc64/Makefile</description>
        <pubDate>Thu, 05 Feb 2015 03:56:49 +0000</pubDate>
        <dc:creator>Justin Hibbits &lt;jhibbits@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>d2cc835c - After r217375, some startup objects under lib/csu are built in a special</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/lib/csu/powerpc64/Makefile#d2cc835c</link>
        <description>After r217375, some startup objects under lib/csu are built in a specialway: first they are compiled to assembly, then some sed&apos;ing is done onthe assembly, and lastly the assembly is compiled to an object file.This last step is done using ${CC}, and not ${AS}, because when thecompiler is clang, it outputs directives that are too advanced for ourold gas.  So we use clang&apos;s integrated assembler instead.  (When thecompiler is gcc, it just calls gas, and nothing is different, except oneextra fork.)However, in the .s to .o rules in lib/csu/$ARCH/Makefile, I still passedCFLAGS to the compiler, instead of ACFLAGS, which are specifically forcompiling .s files.In case you are using &apos;-g&apos; for debug info anywhere in your CFLAGS, itcauses the .s files to already contain debug information in the assemblyitself.  In the next step, the .s files are also compiled using &apos;-g&apos;,and if the compiler is clang, it complains: &quot;error: input can&apos;t have.file dwarf directives when -g is used to generate dwarf debug info forassembly code&quot;.Fix this by using ${ACFLAGS} for compiling the .s files instead.Reported by:	jasoneMFC after:	1 week

            List of files:
            /freebsd-14.2/lib/csu/powerpc64/Makefile</description>
        <pubDate>Fri, 20 Apr 2012 21:00:39 +0000</pubDate>
        <dc:creator>Dimitry Andric &lt;dim@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>cce345c2 - Work around a binutils bug on powerpc64 where the TOC would not be</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/lib/csu/powerpc64/Makefile#cce345c2</link>
        <description>Work around a binutils bug on powerpc64 where the TOC would not beproperly reloaded when calling _fini() in large binaries with multipleTOC sections (e.g. GCC), leading to a segmentation fault. Adding -mlongcallto crt1 flags causes the compiler to emit explicit TOC load instructionsfor all function calls, including _fini().Reviewed by:	kibPointy hat to:	kib

            List of files:
            /freebsd-14.2/lib/csu/powerpc64/Makefile</description>
        <pubDate>Tue, 13 Mar 2012 18:59:19 +0000</pubDate>
        <dc:creator>Nathan Whitehorn &lt;nwhitehorn@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>a22748db - Stop calling _init/_fini methods from crt1 for dynamic binaries.  Do</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/lib/csu/powerpc64/Makefile#a22748db</link>
        <description>Stop calling _init/_fini methods from crt1 for dynamic binaries.  Docall preinit, init and fini arrays methods from crt1 for static binaries.Mark new crt1 with FreeBSD-specific ELF note.Move some common crt1 code into new MI file ignore_init.c, to reduceduplication.  Also, conservatively adjust nearby sources for style.Reviewed by:	kanTested by:	andrew (arm), flo (sparc64)MFC after:	3 weeks

            List of files:
            /freebsd-14.2/lib/csu/powerpc64/Makefile</description>
        <pubDate>Sun, 11 Mar 2012 20:04:09 +0000</pubDate>
        <dc:creator>Konstantin Belousov &lt;kib@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>68a108e6 - Build Scrt.o on powerpc64. Its introduction on other platforms got lost</title>
        <link>http://172.16.0.5:8080/history/freebsd-14.2/lib/csu/powerpc64/Makefile#68a108e6</link>
        <description>Build Scrt.o on powerpc64. Its introduction on other platforms got lostduring the period of time the powerpc64 port was on a project branch.

            List of files:
            /freebsd-14.2/lib/csu/powerpc64/Makefile</description>
        <pubDate>Mon, 27 Jun 2011 16:24:36 +0000</pubDate>
        <dc:creator>Nathan Whitehorn &lt;nwhitehorn@FreeBSD.org&gt;</dc:creator>
    </item>
</channel>
</rss>
