| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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
|
| |
|
|
|
|
|
|
| |
MFC after: 1 week
Sponsored by: EMC / Isilon Storage Division
Notes:
svn path=/head/; revision=288199
|
| |
|
|
| |
Notes:
svn path=/head/; revision=178291
|
| |
|
|
|
|
|
|
|
|
|
|
| |
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
|
| |
|
|
|
|
|
|
|
| |
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
|
| |
|
|
| |
Notes:
svn path=/head/; revision=130575
|
| |
|
|
| |
Notes:
svn path=/head/; revision=107511
|
| |
|
|
|
|
|
| |
bfd_elf32_i386_freebsd_vec. This may help in intra-branch building.
Notes:
svn path=/head/; revision=107510
|
| |
|
|
| |
Notes:
svn path=/head/; revision=107508
|
| |
|
|
| |
Notes:
svn path=/head/; revision=107506
|
| |
|
|
| |
Notes:
svn path=/head/; revision=104875
|
| |
|
|
| |
Notes:
svn path=/head/; revision=84902
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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
|
| |
|
|
|
|
|
|
| |
for those who want to objdump --disassemble things that they're not
supposed to. 8-)
Notes:
svn path=/head/; revision=52926
|
| |
|
|
| |
Notes:
svn path=/head/; revision=50472
|
| |
|
|
|
|
|
| |
Just put generated headers in SRCS.
Notes:
svn path=/head/; revision=36633
|
| |
|
|
| |
Notes:
svn path=/head/; revision=35711
|
| |
|
|
|
|
|
|
|
|
| |
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
|
| |
|
|
|
|
|
|
|
| |
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
|
|
|
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
|