diff options
author | imp <imp@FreeBSD.org> | 2011-01-07 20:26:33 +0000 |
---|---|---|
committer | imp <imp@FreeBSD.org> | 2011-01-07 20:26:33 +0000 |
commit | 54d5c7e86fd36ddd2ea33b3ec25fdc3e4b71f0f4 (patch) | |
tree | 12ed45fc5cc0930d7f4165ad7f223aba33b36162 /usr.bin | |
parent | a6ca4af56352f3a556f847fe386e74305fa0c2aa (diff) | |
download | FreeBSD-src-54d5c7e86fd36ddd2ea33b3ec25fdc3e4b71f0f4.zip FreeBSD-src-54d5c7e86fd36ddd2ea33b3ec25fdc3e4b71f0f4.tar.gz |
Retire TARGET_ABI.
Implement MACHINE_ARCH=mips64e[lb] to build N64 images. This replaces
MACHINE_ARCH=mipse[lb] TARGET_ABI=n64.
MACHINE_ARCH=mipsn32e[lb] has been added, but currently requires
WITHOUT_CDDL due to atomic issues in libzfs. I've not investigated
this much, but implemented this to preserve as much of the TARGET_ABI
functionality that I could. Since its presence doesn't affect the
working cases, I'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.
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/xlint/Makefile.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/xlint/Makefile.inc b/usr.bin/xlint/Makefile.inc index 32cfcb7..e27a4cd 100644 --- a/usr.bin/xlint/Makefile.inc +++ b/usr.bin/xlint/Makefile.inc @@ -8,7 +8,7 @@ WARNS?= 0 # These assignments duplicate much of the functionality of # MACHINE_CPUARCH, but there's no easy way to export make functions... .if defined(TARGET_ARCH) -TARGET_CPUARCH= ${TARGET_ARCH:C/mipse[bl]/mips/:C/armeb/arm/} +TARGET_CPUARCH= ${TARGET_ARCH:C/mips.*e[bl]/mips/:C/armeb/arm/} .else TARGET_CPUARCH= ${MACHINE_CPUARCH} TARGET_ARCH= ${MACHINE_ARCH} |