summaryrefslogtreecommitdiffstats
path: root/gnu/usr.bin/binutils
Commit message (Collapse)AuthorAgeFilesLines
* Removed all the complexities when installing the strip(1) binary.ru2004-02-061-13/+1
| | | | Submitted by: bde
* strip wasn't stripped since we stopped to include bsd.own.mk from sys.mk.ru2004-02-051-8/+6
|
* Discontinuation of an action that now fits on one.obrien2004-01-271-3/+1
|
* Fix problem where kgdb misses trap frames.obrien2004-01-267-22/+24
| | | | Reported by: iedowse
* Use proper name.obrien2004-01-262-6/+8
|
* style.Makefile(5)obrien2004-01-261-2/+3
|
* Follow existing GDB style for frame_info vars.obrien2004-01-261-5/+5
|
* Remove trailing white space.obrien2004-01-261-5/+5
|
* Don't put objects in SRCS -- this creates all sort of havoc likeru2004-01-121-1/+1
| | | | | causing objects to be built during "make depend", missed sources in .depend, etc.
* FBSDID style nit.obrien2003-11-121-1/+2
|
* Implement gdb_solib_create_inferior_hook().simokawa2003-10-291-1/+7
| | | | | | | | This function is used for autoloading kld module symbols for remote kgdb. We still need a patch(*) for src/contrib/gdb/gdb/solib-svr4.c to enable this function. (*) http://people.freebsd.org/~simokawa/gdb/patch-solib-svr4.c
* Enable '--interpreter=mi' support.obrien2003-09-071-1/+3
| | | | Submitted by: Rui Lopes <rui@ruilopes.com>
* s/x86-64/amd64/obrien2003-09-071-1/+1
|
* style.Makefile(5)obrien2003-09-071-29/+18
|
* Properly quote the lib path.obrien2003-08-196-6/+6
|
* Stage 3 of dynamic root support, con't.obrien2003-08-176-6/+6
| | | | 'ld' should also search /lib for dynamic libraries.
* s/x86_64/amd64/g where possible.obrien2003-08-171-2/+2
|
* The as(1) manpage was missing on i386 and amd64.ru2003-08-142-2/+1
|
* Temporarily turn off -Werror for these components.kan2003-07-112-1/+2
|
* bfd_elf32_i386_freebsd_vec is the only 32-bit vector we really need.obrien2003-07-011-1/+1
| | | | ar and nm aren't very smart when faced with multiple applicable vectors.
* Add elf_i386_fbsd emulation.obrien2003-07-011-0/+14
| | | | Obtained from: p4
* Don't build separate annotate.info, it's already part of gdb.info.ru2003-07-011-2/+1
|
* Update the target.obrien2003-06-265-15/+15
|
* Remove MAINTAINER lines.obrien2003-06-141-4/+0
|
* Set the binutils arch for as/nm correctly on the amd64 platform.peter2003-05-081-1/+6
| | | | | | | As far as binutils is concerned, the amd64 platform is still called "x86-64"/"x86_64". Setting things from ${MACHINE_ARCH} breaks that. Approved by: re (scottl)
* The AMD64 Hammer bits.obrien2003-04-269-1/+4430
|
* Remove first attempt at x86-64 bits. We're going to call it "amd64" now.obrien2003-04-267-4250/+0
| | | | Sponsored by: Microsoft
* Removed invasion into these makefiles by the "legacy" stuff;ru2003-04-1212-48/+36
| | | | I have a better fix in the works.
* libbinutils.a needs basename(3); when the latter is providedru2003-04-1112-36/+48
| | | | by -legacy, liblegacy.a should come last in the LDADD list.
* Migrate to a new way of dealing with building from old revisions ofimp2003-04-052-14/+1
| | | | | | | | | | | | | | | | | FreeBSD. This method attempts to centralize all the necessary hacks or work arounds in one of two places in the tree (src/Makefile.inc1 and src/tools/build). We build a small compatibility library (libbuild.a) as well as selectively installing necessary include files. We then include this directory when building host binaries. This removes all the past release compatibilty hacks from various places in the tree. We still build on tip of stable and current. I will work with those that want to support more, although I anticipate it will just work. Many thanks to ru@, obrien@ and jhb@ for providing valuable input at various stage of implementation, as well as for working together to positively effect a change for the better.
* Attempt to automatically read in kernel module symbols when a liveiedowse2003-03-214-2/+330
| | | | | | | | | | | | | | | | | | | | | | | | or dead kernel core is loaded into gdb. This extends gdb's existing shared library support, so the "info sharedlibrary", "sharedlibrary" and "nosharedlibrary" commands can be used to view and change the list of loaded symbol files. The current implementation is more than a kludge however, and it will not always manage to find the .ko.debug file corresponding to the loaded module. In particular, for modules whose build directory cannot be easily guessed from the module name such as all the netgraph modules, the debug version of the .ko will not be found automatically. The logic for finding the module file first attempts to guess at the module build directory by parsing the version[] string. Then using that directory ($DIR), it tries the following paths in turn: ./<module>.ko.debug ./<module>.ko $DIR/<module>.ko.debug $DIR/<module>.ko /boot/kernel/<module>.ko.debug /boot/kernel/<module>.ko Approved by: obrien, mp
* Fixed CLEANFILES.ru2003-02-252-2/+4
| | | | Submitted by: cron
* The PowerPC-specfic scripttempl file was depreciated in favor of the genericobrien2003-01-211-1/+1
| | | | ELF one.
* Reformat.obrien2003-01-041-22/+24
|
* Add the ability to debug C++ programs using v2 and v3 of the G++ ABI.obrien2003-01-041-1/+1
| | | | Submitted by: Peter Edwards <pmedwards@eircom.net>
* GC 'char sigmap[]' (it is no longer used)fjoe2003-01-041-40/+0
| | | | | Approved by: obrien MFC after: 3 days
* We need to support the bfd_efi_app_ia64_vec vector for loader support.obrien2002-12-051-0/+1
| | | | | Submitted by: Marcel Approved by: RE
* Change the default emulation to elf64_sparc_fbsd. This emulation knows theobrien2002-12-051-10/+16
| | | | correct spelling of our rtld.
* Set WARNS=0 as a temp work around until I can get access to an IA-64 boxobrien2002-12-051-0/+2
| | | | | | to do this right. Approved by: RE
* Change the default emulation to elf64_ia64_fbsd. This knows the properobrien2002-12-051-5/+13
| | | | spelling of our rtld.
* Don't dike out ELF_DYNAMIC_INTERPRETER, we need this copy now.obrien2002-12-051-2/+1
| | | | | | This should have been committed with ia64/bfd.h rev 1.6. Approved by: RE
* Remove the ancient PEI cruft that is useless.obrien2002-12-021-4/+0
|
* We can handle the bfd_elf32_i386_vec vector at the same time as theobrien2002-12-021-2/+2
| | | | bfd_elf32_i386_freebsd_vec. This may help in intra-branch building.
* We can handle the bfd_elf64_alpha_vec vector at the same time as theobrien2002-12-021-2/+2
| | | | bfd_elf64_alpha_freebsd_vec. This may help in intra-branch building.
* Cleaner support of a DEFAULT_VECTOR.obrien2002-12-025-17/+21
|
* Update for the Binutils 2.13.2 20021127 snapshot import.obrien2002-12-021-8/+2
|
* Handle the "HAVE_" defines via the VECS list.obrien2002-12-027-14/+4
|
* Update for the Binutils 2.13.2 20021127 snapshot import.obrien2002-12-025-112/+225
| | | | Among other things, we don't need to redefine ELF_DYNAMIC_INTERPRETER here.
* Update for the Binutils 2.13.2 20021127 snapshot import.obrien2002-12-027-9/+24
|
* We now have insque().obrien2002-12-021-1/+1
|
OpenPOWER on IntegriCloud