aboutsummaryrefslogtreecommitdiff
path: root/gnu/usr.bin/binutils/libbfd/Makefile.i386
Commit message (Collapse)AuthorAgeFilesLines
* Retire obsolete GDB 6.1.1Ed Maste2020-12-151-21/+0
| | | | | | | | | | | | | | | | | | | | | GDB 6.1.1 was released in June 2004 and is long obsolete. It does not support all of the architectures that FreeBSD does, and imposes limitations on the FreeBSD kernel build, such as the continued use of DWARF2 debugging information. It was kept (in /usr/libexec/) only for use by crashinfo(8), which extracts some basic information from a kernel core dump after a crash. Crashinfo already prefers gdb from port/package if installed. Future work may add kernel debug support to LLDB or find another path for crashinfo's needs, but in any case we do not want to ship the excessively outdated GDB in FreeBSD 13. Sponsored by: The FreeBSD Foundation Differential Revision: https://reviews.freebsd.org/D27610 Notes: svn path=/head/; revision=368667
* Add missing CLEANFILES.Bryan Drewery2015-09-241-0/+2
| | | | | | | | MFC after: 1 week Sponsored by: EMC / Isilon Storage Division Notes: svn path=/head/; revision=288199
* Add support for the 32-bit EFI target.Marcel Moolenaar2008-04-171-3/+10
| | | | Notes: svn path=/head/; revision=178291
* MAJOR cleanup of the Bmake framework.David E. O'Brien2004-07-081-11/+7
| | | | | | | | | | | | This includes removing all vestiges of the old not-really supported ability to build cross tools targeting non-FreeBSD systems, such as m68k Lynx and NetBSD. Move as much duplicated code from platform Makefiles into the shared Makefiles. Add a simple mechanism for specifying ELF 'ldscripts'. Also share as many .h files as possible (now a single bfd.h vs. one per platform). Notes: svn path=/head/; revision=131832
* Move the elf32-target.h and elf64-target.h targets from the MDMarcel Moolenaar2004-06-191-2/+0
| | | | | | | | | makefiles to the centralized makefile. This not only reduces duplication, it also makes the MD quirks stand out better and thus improves maintenance. Notes: svn path=/head/; revision=130743
* Updated Bmake framework for Binutils 2.15.David E. O'Brien2004-06-161-1/+6
| | | | Notes: svn path=/head/; revision=130575
* Remove the ancient PEI cruft that is useless.David E. O'Brien2002-12-021-4/+0
| | | | Notes: svn path=/head/; revision=107511
* We can handle the bfd_elf32_i386_vec vector at the same time as theDavid E. O'Brien2002-12-021-2/+2
| | | | | | | bfd_elf32_i386_freebsd_vec. This may help in intra-branch building. Notes: svn path=/head/; revision=107510
* Cleaner support of a DEFAULT_VECTOR.David E. O'Brien2002-12-021-4/+4
| | | | Notes: svn path=/head/; revision=107508
* Handle the "HAVE_" defines via the VECS list.David E. O'Brien2002-12-021-2/+0
| | | | Notes: svn path=/head/; revision=107506
* Switch over to the new FreeBSD emulation and bfd vecDavid E. O'Brien2002-10-111-4/+4
| | | | Notes: svn path=/head/; revision=104875
* Clean up the formatting.David E. O'Brien2001-10-141-9/+8
| | | | Notes: svn path=/head/; revision=84902
* s/MACHINE_ARCH/TARGET_ARCH/gMarcel Moolenaar1999-12-171-1/+1
| | | | | | | | | | | | | | | 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. Notes: svn path=/head/; revision=54748
* Teach binutils how to understand NT format objects and libs. This is usefulJohn Birrell1999-11-061-0/+7
| | | | | | | | for those who want to objdump --disassemble things that they're not supposed to. 8-) Notes: svn path=/head/; revision=52926
* $Id$ -> $FreeBSD$Peter Wemm1999-08-271-1/+1
| | | | Notes: svn path=/head/; revision=50472
* Don't use beforedepend or give dependencies on generated headers explicitly.Bruce Evans1998-06-041-6/+2
| | | | | | | Just put generated headers in SRCS. Notes: svn path=/head/; revision=36633
* Add cross-architecture support.John Birrell1998-05-041-7/+7
| | | | Notes: svn path=/head/; revision=35711
* Give up on a.out support in binutils. It has too many problems toJohn Polstra1998-03-301-6/+3
| | | | | | | | | | be worth much effort. Install all i386 binutils programs in "/usr/libexec/elf". Disable a.out support in libbfd. It's too dangerous to leave it in. Some of the utilities think they can handle a.out, but they generate bad object files. Notes: svn path=/head/; revision=34955
* Disable support for the a.out-i386-bsd target. Everything it can doJohn Polstra1998-03-141-5/+3
| | | | | | | | | seems to be supported in the a.out-i386-freebsd target. When both are present, there are sometimes complaints of "ambiguous file format." Notes: svn path=/head/; revision=34562
* Restructure the binutils hierarchy somewhat in order to betterJohn Polstra1998-03-121-0/+22
support building it for variant architectures. It was already becoming clear that the former structure was too rigid and didn't scale well. The usual sort of makefile magic arranges to .include an architecture specific makefile "Makefile.${MACHINE_ARCH}" in each directory where it exists. Also, sources will be found in each subdirectory "${MACHINE_ARCH}" that exists. This is all taken care of automatically by the top level "Makefile.inc0". This all seems to work right for the i386 now. I have also converted those alpha pieces already present to the new schema as best I could. Also: change the BINDIR on the i386 to /usr/libexec/elf for "ar" and "ranlib". They are not object format independent enough to put into /usr/bin. Notes: svn path=/head/; revision=34495