Make default ABI for as(1) to be the same as target platform.This change makes object files compiled with default flags bygcc and as compatible.
Push mips support for as into the tree.
Remove MIPS support.It has rotted quite badly and no one has provided updates for it.
Conditionally define "CROSS_COMPILE" here.
Replace freebsdelf with freebsd in BINDIRRequested by: obrien
Don't change the name when building a cross-tool. Just set the BINDIRto /usr/libexec/cross/${MACHINE_ARCH}-freebsdelf.
$Id$ -> $FreeBSD$
For mips assembler, we need to define TARGET_BYTES_BIG_ENDIAN to bezero when building for little endian machines.Correct the target names for mips. We just use the generic targetsfor mips elf, s
For mips assembler, we need to define TARGET_BYTES_BIG_ENDIAN to bezero when building for little endian machines.Correct the target names for mips. We just use the generic targetsfor mips elf, so the mipse[lb]-unknown-freebsd emulation types don'texist.
show more ...
Add TARGET_ARCH=mipsel and TARGET_ARCH=mipseb as a valid targets.Unlike the unisex architecutres we've had so far, mips is bisexual.These tools can produce either byte sex, and the compiler/makede
Add TARGET_ARCH=mipsel and TARGET_ARCH=mipseb as a valid targets.Unlike the unisex architecutres we've had so far, mips is bisexual.These tools can produce either byte sex, and the compiler/makedetermines the proper gender to use. Otherwise, we'd have to have hadmipsel and mipseb in all the places that we have just mips. And thereare other complications with doing that (binutils doesn't like tobuild mips tools without both byte genders, it seems).Introduced BINUTIL_ARCH so that other bisexual architectures can ageneric mechanism.We cannot just define MACHINE_ARCH as mips because we need todifferentiate big and little endian types of binaries. Discussions onfreebsd-arch have hashed out this issue (and the parallel libcissues). NetBSD is moving towards mipsel and mipseb for their twoflavors of mips ports (in time for 1.4, if this change hasn't alreadybeen accomplished).I've been building i386 worlds with this tree for a three months withthese files in place with no ill effects.