<?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>ffec3151 - Convert gnu to using SRCTOP</title>
        <link>http://172.16.0.5:8080/history/freebsd-12.1/gnu/lib/libgomp/Makefile#ffec3151</link>
        <description>Convert gnu to using SRCTOPPrefer SRCTOP over CURDIR/../../contrib, etc. However, retain the &quot;upone level&quot; instances of ../ because they are really relative to thispart of the tree and not a means to find the root of the tree. Assuch, it&apos;s better to leave them since that further the goal of beingable to move directories if watned to in the future.Differential Revision:	https://reviews.freebsd.org/D9932Sponsored by:		NetflixSilence	On:		arch@ (twice)

            List of files:
            /freebsd-12.1/gnu/lib/libgomp/Makefile</description>
        <pubDate>Sun, 12 Mar 2017 18:59:16 +0000</pubDate>
        <dc:creator>Warner Losh &lt;imp@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>dc9b124d - Create a new MACHINE_ARCH for Freescale PowerPC e500v2</title>
        <link>http://172.16.0.5:8080/history/freebsd-12.1/gnu/lib/libgomp/Makefile#dc9b124d</link>
        <description>Create a new MACHINE_ARCH for Freescale PowerPC e500v2Summary:The Freescale e500v2 PowerPC core does not use a standard FPU.Instead, it uses a Signal Processing Engine (SPE)--a DSP-style vector processorunit, which doubles as a FPU.  The PowerPC SPE ABI is incompatible with thestock powerpc ABI, so a new MACHINE_ARCH was created to deal with this.Additionaly, the SPE opcodes overlap with Altivec, so these are mutuallyexclusive.  Taking advantage of this fact, a new file, powerpc/booke/spe.c, wascreated with the same function set as in powerpc/powerpc/altivec.c, so itbecomes effectively a drop-in replacement.  setjmp/longjmp were modified to savethe upper 32-bits of the now-64-bit GPRs (upper 32-bits are only accessible bythe SPE).Note: This does _not_ support the SPE in the e500v1, as the e500v1 SPE does notsupport double-precision floating point.Also, without a new MACHINE_ARCH it would be impossible to provide binarypackages which utilize the SPE.Additionally, no work has been done to support ports, work is needed for this.This also means no newer gcc can yet be used.  However, gcc&apos;s powerpc supporthas been refactored which would make adding a powerpcspe-freebsd target veryeasy.Test Plan:This was lightly tested on a RouterBoard RB800 and an AmigaOne A1222(P1022-based) board, compiled against the new ABI.  Base system utilities(/bin/sh, /bin/ls, etc) still function appropriately, the system is able to bootmultiuser.Reviewed By:	bdrewery, impRelnotes:	yesDifferential Revision:	https://reviews.freebsd.org/D5683

            List of files:
            /freebsd-12.1/gnu/lib/libgomp/Makefile</description>
        <pubDate>Sat, 22 Oct 2016 01:57:15 +0000</pubDate>
        <dc:creator>Justin Hibbits &lt;jhibbits@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>70364ab4 - libgomp: bring early CPU affinity support from FSF GCC-4_3 branch.</title>
        <link>http://172.16.0.5:8080/history/freebsd-12.1/gnu/lib/libgomp/Makefile#70364ab4</link>
        <description>libgomp: bring early CPU affinity support from FSF GCC-4_3 branch.This is not likely to make it into a release and is basically disabledbut should still be useful for testing.Obtained from: GCC pre-4.3 (rev. 123494, 125542; LGPLv2.1+)

            List of files:
            /freebsd-12.1/gnu/lib/libgomp/Makefile</description>
        <pubDate>Mon, 27 Apr 2015 21:27:51 +0000</pubDate>
        <dc:creator>Pedro F. Giffuni &lt;pfg@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>39bf09d2 - Make the generated files depend on the Makefile so new platforms are easier</title>
        <link>http://172.16.0.5:8080/history/freebsd-12.1/gnu/lib/libgomp/Makefile#39bf09d2</link>
        <description>Make the generated files depend on the Makefile so new platforms are easierto add than mipsn32 was when I was working on it...

            List of files:
            /freebsd-12.1/gnu/lib/libgomp/Makefile</description>
        <pubDate>Wed, 02 Feb 2011 03:27:31 +0000</pubDate>
        <dc:creator>Warner Losh &lt;imp@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>7b87c35e - Fix n32 compile.</title>
        <link>http://172.16.0.5:8080/history/freebsd-12.1/gnu/lib/libgomp/Makefile#7b87c35e</link>
        <description>Fix n32 compile.These changes are needed to fix n32 compile after the recent change ofmips n32 MACHINE_ARCH to mipsn32eb/mipsn32el.Reviewed by:	imp, bz (earlier version)

            List of files:
            /freebsd-12.1/gnu/lib/libgomp/Makefile</description>
        <pubDate>Thu, 27 Jan 2011 14:16:12 +0000</pubDate>
        <dc:creator>Jayachandran C. &lt;jchandra@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>cd2ae253 - Retire TARGET_ABI.</title>
        <link>http://172.16.0.5:8080/history/freebsd-12.1/gnu/lib/libgomp/Makefile#cd2ae253</link>
        <description>Retire TARGET_ABI.Implement MACHINE_ARCH=mips64e[lb] to build N64 images.  This replacesMACHINE_ARCH=mipse[lb] TARGET_ABI=n64.MACHINE_ARCH=mipsn32e[lb] has been added, but currently requiresWITHOUT_CDDL due to atomic issues in libzfs.  I&apos;ve not investigatedthis much, but implemented this to preserve as much of the TARGET_ABIfunctionality that I could.  Since its presence doesn&apos;t affect theworking cases, I&apos;ve kept it in for now.Added mips64e[lb] to make universe, so more kernels build.And I think this (finally) closes the curtain on the tbemd tree.

            List of files:
            /freebsd-12.1/gnu/lib/libgomp/Makefile</description>
        <pubDate>Fri, 07 Jan 2011 20:26:33 +0000</pubDate>
        <dc:creator>Warner Losh &lt;imp@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>b12277d1 - Repair some build breakage introduced in r211725 and garbage collect some</title>
        <link>http://172.16.0.5:8080/history/freebsd-12.1/gnu/lib/libgomp/Makefile#b12277d1</link>
        <description>Repair some build breakage introduced in r211725 and garbage collect somecode made obsolete in the same commit.

            List of files:
            /freebsd-12.1/gnu/lib/libgomp/Makefile</description>
        <pubDate>Sat, 28 Aug 2010 15:03:11 +0000</pubDate>
        <dc:creator>Nathan Whitehorn &lt;nwhitehorn@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>25faff34 - MFtbemd:</title>
        <link>http://172.16.0.5:8080/history/freebsd-12.1/gnu/lib/libgomp/Makefile#25faff34</link>
        <description>MFtbemd:Prefer MACHNE_CPUARCH to MACHINE_ARCH in most contexts where you wantto test of all the CPUs of a given family conform.

            List of files:
            /freebsd-12.1/gnu/lib/libgomp/Makefile</description>
        <pubDate>Mon, 23 Aug 2010 22:24:11 +0000</pubDate>
        <dc:creator>Warner Losh &lt;imp@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>5619a3e4 - Add/improve mips64r2, Octeon, n32 and n64 support in the toolchain.</title>
        <link>http://172.16.0.5:8080/history/freebsd-12.1/gnu/lib/libgomp/Makefile#5619a3e4</link>
        <description>Add/improve mips64r2, Octeon, n32 and n64 support in the toolchain.o) Add TARGET_ABI to the MIPS toolchain build process.  This sets the default   ABI to one of o32, n32 or n64.  If it is not set, o32 is assumed as that is   the current default.o) Set the default GCC cpu type to any specified TARGET_CPUTYPE.  This is   necessary to have a working &quot;cc&quot; if e.g. mips64 is specified, as binutils   will refuse to link objects using different ISAs in some cases.o) Add support for n32 and n64 ABIs to binutils and GCC.o) Add additional required libgcc2 stubs for n32 and n64.o) Add support for the &quot;mips64r2&quot; architecture to GCC.  Add the &quot;octeon&quot;o) When static linking, wrap default libraries in --start-group and   --end-group.  This is required for static linking to work on n64 with the   interdependencies between libraries there.  This is what other OSes that   support n64 seem to do, as well.o) Fix our GCC spec to define __mips64 for 64-bit targets, not __mips64__, the   former being what libgcc, etc., check and the latter seemingly being a   misspelling of a hand merge from a Linux spec.o) When no TARGET_CPUTYPE is specified at build time, make GCC take the default   ISA from the ABI.  Our old defaults were too liberal and assumed that 64-bit   ABIs should default to the MIPS64 ISA and that 32-bit ABIs should default to   the MIPS32 ISA, when we are supporting or will support some systems based on   earlier 32-bit and 64-bit ISAs, most notably MIPS-III.o) Merge a new opcode file (and support code) from a later version of binutils   and add flags and code necessary to support Octeon-specific instructions.   This should also make merging opcodes for other modern architectures easier.Reviewed by:	imp

            List of files:
            /freebsd-12.1/gnu/lib/libgomp/Makefile</description>
        <pubDate>Wed, 02 Jun 2010 11:06:03 +0000</pubDate>
        <dc:creator>Juli Mallett &lt;jmallett@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>608a4df9 - mfp4: sort the architectures alphabetically...</title>
        <link>http://172.16.0.5:8080/history/freebsd-12.1/gnu/lib/libgomp/Makefile#608a4df9</link>
        <description>mfp4: sort the architectures alphabetically...

            List of files:
            /freebsd-12.1/gnu/lib/libgomp/Makefile</description>
        <pubDate>Fri, 19 Sep 2008 02:30:22 +0000</pubDate>
        <dc:creator>Warner Losh &lt;imp@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>4bdc01a9 - Add FreeBSD/MIPS support to GCC.</title>
        <link>http://172.16.0.5:8080/history/freebsd-12.1/gnu/lib/libgomp/Makefile#4bdc01a9</link>
        <description>Add FreeBSD/MIPS support to GCC.

            List of files:
            /freebsd-12.1/gnu/lib/libgomp/Makefile</description>
        <pubDate>Mon, 01 Sep 2008 18:46:03 +0000</pubDate>
        <dc:creator>David E. O&apos;Brien &lt;obrien@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>88843a0a - Install omp.h file.</title>
        <link>http://172.16.0.5:8080/history/freebsd-12.1/gnu/lib/libgomp/Makefile#88843a0a</link>
        <description>Install omp.h file.Submitted by:	Pieter de Goeje (pieter at degoejes dot nl)

            List of files:
            /freebsd-12.1/gnu/lib/libgomp/Makefile</description>
        <pubDate>Thu, 31 May 2007 13:21:30 +0000</pubDate>
        <dc:creator>Alexander Kabaev &lt;kan@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>afb57df6 - Update bmake glue to build GCC 4.2.</title>
        <link>http://172.16.0.5:8080/history/freebsd-12.1/gnu/lib/libgomp/Makefile#afb57df6</link>
        <description>Update bmake glue to build GCC 4.2.Also:        Switch FreeBSD to use libgcc_s.so.1.        Use dl_iterate_phdr to locate shared objects&apos; exception frame        info instead of depending on older register_frame_info machinery.        This allows us to avoid depending on libgcc_s.so.1 in binaries        that do not use exception handling directly. As an additional        benefit it breaks circular libc &lt;=&gt; libgcc_s.so.1 dependency too.        Build newly added libgomp.so.1 library, the runtime support        bits for OpenMP.        Build LGPLed libssp library. Our libc provides our own        BSD-licensed SSP callbacks implementation, so this library        is only built to benefit applications that have hadcoded        knowledge of libssp.so and libssp_nonshared.a. When linked        in from command line, these libraries override libc        implementation.

            List of files:
            /freebsd-12.1/gnu/lib/libgomp/Makefile</description>
        <pubDate>Sat, 19 May 2007 04:25:59 +0000</pubDate>
        <dc:creator>Alexander Kabaev &lt;kan@FreeBSD.org&gt;</dc:creator>
    </item>
</channel>
</rss>
