aboutsummaryrefslogtreecommitdiff
path: root/gnu/usr.bin/binutils/ld
Commit message (Collapse)AuthorAgeFilesLines
* Add missing DPADD's.Peter Wemm1998-06-031-1/+3
| | | | Notes: svn path=/head/; revision=36615
* The yacc makefile changes don't seem to know when to generate theJohn Birrell1998-05-111-2/+2
| | | | | | | | header file and when not to, so for the time being make sure the sucker gets generated up front. Notes: svn path=/head/; revision=35946
* Work out the list of emulations based on the cross-architecturesJohn Birrell1998-05-041-3/+14
| | | | | | | defined. The TARGET is now set from an included makefile. Notes: svn path=/head/; revision=35717
* Add cross-architecture support.John Birrell1998-05-042-15/+20
| | | | Notes: svn path=/head/; revision=35716
* Fixed races in `make -jN' using new yacc rules. This also fixes plainBruce Evans1998-05-041-8/+2
| | | | | | | `make' (without a previous `make depend'). Notes: svn path=/head/; revision=35692
* Give up on a.out support in binutils. It has too many problems toJohn Polstra1998-03-301-14/+6
| | | | | | | | | | 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
* Restructure the binutils hierarchy somewhat in order to betterJohn Polstra1998-03-126-0/+143
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