<feed xmlns='http://www.w3.org/2005/Atom'>
<title>src/gnu/usr.bin/binutils/Makefile.inc0, branch release/4.6.2</title>
<subtitle>FreeBSD source tree</subtitle>
<id>https://cgit-dev.freebsd.org/src/atom?h=release%2F4.6.2</id>
<link rel='self' href='https://cgit-dev.freebsd.org/src/atom?h=release%2F4.6.2'/>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/'/>
<updated>2001-08-01T22:54:12Z</updated>
<entry>
<title>MFC: update to Binutils 2.11.2.</title>
<updated>2001-08-01T22:54:12Z</updated>
<author>
<name>David E. O'Brien</name>
<email>obrien@FreeBSD.org</email>
</author>
<published>2001-08-01T22:54:12Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=7a9ec8b322237a4ab1caf4dd0040fbcab982eac7'/>
<id>urn:sha1:7a9ec8b322237a4ab1caf4dd0040fbcab982eac7</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Upgrade to Binutils 2.10.1.</title>
<updated>2000-11-25T10:38:21Z</updated>
<author>
<name>David E. O'Brien</name>
<email>obrien@FreeBSD.org</email>
</author>
<published>2000-11-25T10:38:21Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=67ca9b4b78601cdbde864090ed955dac20bc9eea'/>
<id>urn:sha1:67ca9b4b78601cdbde864090ed955dac20bc9eea</id>
<content type='text'>
</content>
</entry>
<entry>
<title>MFC:  Upgrade to Binutils 2.10.0.</title>
<updated>2000-07-06T22:16:12Z</updated>
<author>
<name>David E. O'Brien</name>
<email>obrien@FreeBSD.org</email>
</author>
<published>2000-07-06T22:16:12Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=a8460813121e7489510e88202b7b77553ec07e48'/>
<id>urn:sha1:a8460813121e7489510e88202b7b77553ec07e48</id>
<content type='text'>
</content>
</entry>
<entry>
<title>s/MACHINE_ARCH/TARGET_ARCH/g</title>
<updated>1999-12-17T15:50:45Z</updated>
<author>
<name>Marcel Moolenaar</name>
<email>marcel@FreeBSD.org</email>
</author>
<published>1999-12-17T15:50:45Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=ecc4dcbd828295057f2272b8c0a2d1ac0a910d92'/>
<id>urn:sha1:ecc4dcbd828295057f2272b8c0a2d1ac0a910d92</id>
<content type='text'>
The target machine is represented by TARGET_ARCH. MACHINE_ARCH always
represents the host machine. When TARGET_ARCH is not defined, it is
assumed to be equal to MACHINE_ARCH. This means that we're building a
native toolset by default. We're creating cross-compilation tools when
MACHINE_ARCH != TARGET_ARCH.

TARGET_ARCH is defined when building binutils as part of the bootstrap
build and is set to reflect the architecture we're currently cross-
building. With this change binutils is ready for cross-building.
</content>
</entry>
<entry>
<title>Change CROSS_TOOLS to CROSS_ARCH because that makes more sense.</title>
<updated>1999-11-06T21:13:47Z</updated>
<author>
<name>John Birrell</name>
<email>jb@FreeBSD.org</email>
</author>
<published>1999-11-06T21:13:47Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=fe8e7c234690b22c342f8c0cb8ae68bae3bd1031'/>
<id>urn:sha1:fe8e7c234690b22c342f8c0cb8ae68bae3bd1031</id>
<content type='text'>
Allow for the case where the host architecture might also be listed
in CROSS_ARCH, so don't do things twice. This situation can arise if you
want NT support in binutils (CROSS_ARCH=i386 CROSS_FORMAT=winnt).
</content>
</entry>
<entry>
<title>$Id$ -&gt; $FreeBSD$</title>
<updated>1999-08-27T23:37:10Z</updated>
<author>
<name>Peter Wemm</name>
<email>peter@FreeBSD.org</email>
</author>
<published>1999-08-27T23:37:10Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=9b7a44a60e11baaf94f68f81c4b30d26f31643b7'/>
<id>urn:sha1:9b7a44a60e11baaf94f68f81c4b30d26f31643b7</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Add TARGET_ARCH=mipsel and TARGET_ARCH=mipseb as a valid targets.</title>
<updated>1999-03-01T04:01:57Z</updated>
<author>
<name>Warner Losh</name>
<email>imp@FreeBSD.org</email>
</author>
<published>1999-03-01T04:01:57Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=7408d8ff343a0912c2c2850d08a4b740c23af690'/>
<id>urn:sha1:7408d8ff343a0912c2c2850d08a4b740c23af690</id>
<content type='text'>
Unlike the unisex architecutres we've had so far, mips is bisexual.
These tools can produce either byte sex, and the compiler/make
determines the proper gender to use.  Otherwise, we'd have to have had
mipsel and mipseb in all the places that we have just mips.  And there
are other complications with doing that (binutils doesn't like to
build mips tools without both byte genders, it seems).

Introduced BINUTIL_ARCH so that other bisexual architectures can a
generic mechanism.

We cannot just define MACHINE_ARCH as mips because we need to
differentiate big and little endian types of binaries.  Discussions on
freebsd-arch have hashed out this issue (and the parallel libc
issues).  NetBSD is moving towards mipsel and mipseb for their two
flavors of mips ports (in time for 1.4, if this change hasn't already
been accomplished).

I've been building i386 worlds with this tree for a three months with
these files in place with no ill effects.
</content>
</entry>
<entry>
<title>Update for import of binutils-2.9.1.</title>
<updated>1998-09-06T23:01:53Z</updated>
<author>
<name>John Polstra</name>
<email>jdp@FreeBSD.org</email>
</author>
<published>1998-09-06T23:01:53Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=34d21980354361a56ed9821584b6191a849fa0ae'/>
<id>urn:sha1:34d21980354361a56ed9821584b6191a849fa0ae</id>
<content type='text'>
Submitted by:	Doug Rabson &lt;dfr&gt;
</content>
</entry>
<entry>
<title>Add makefile support for cross-architectures. Allow CROSS_TOOLS to</title>
<updated>1998-05-04T21:10:56Z</updated>
<author>
<name>John Birrell</name>
<email>jb@FreeBSD.org</email>
</author>
<published>1998-05-04T21:10:56Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=dd67e6bff74468fc4e7c3435be9242e8ca5cedd5'/>
<id>urn:sha1:dd67e6bff74468fc4e7c3435be9242e8ca5cedd5</id>
<content type='text'>
be defined (in /etc/make.conf, say) and set to the additional architectures
that need to be compiled in. So on alpha I set CROSS_TOOLS = i386.
On i386 you can't build alpha due to lack of 64-bit support on 32-bit
architectures, but that's a GNU problem.

This change relies on makefiles in the binutils sub-directories having
the extension defined in the CROSS_TOOLS, instead of those makefiles
being selected based on the host architecture.
</content>
</entry>
<entry>
<title>Change the include path for bfd.h to libbfd/${MACHINE_ARCH} since</title>
<updated>1998-03-12T05:59:22Z</updated>
<author>
<name>John Birrell</name>
<email>jb@FreeBSD.org</email>
</author>
<published>1998-03-12T05:59:22Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=ec14ed6ee57fb00770366eeb14346f3c49ffb3eb'/>
<id>urn:sha1:ec14ed6ee57fb00770366eeb14346f3c49ffb3eb</id>
<content type='text'>
I moved the location of that architecture specific file.
</content>
</entry>
</feed>
