summaryrefslogtreecommitdiff
path: root/lib/libc/gen/getobjformat.c
Commit message (Collapse)AuthorAgeFilesLines
* Retire more remnants of a.out support, as threatened in 2002.Peter Wemm2007-01-251-44/+0
| | | | | | | Laughed-at-by: kris Notes: svn path=/head/; revision=166239
* Initiate deorbit burn for the i386-only a.out related support. Moves arePeter Wemm2002-09-171-80/+4
| | | | | | | | | | | | | | | | | | under way to move the remnants of the a.out toolchain to ports. As the comment in src/Makefile said, this stuff is deprecated and one should not expect this to remain beyond 4.0-REL. It has already lasted WAY beyond that. Notable exceptions: gcc - I have not touched the a.out generation stuff there. ldd/ldconfig - still have some code to interface with a.out rtld. old as/ld/etc - I have not removed these yet, pending their move to ports. some includes - necessary for ldd/ldconfig for now. Tested on: i386 (extensively), alpha Notes: svn path=/head/; revision=103436
* No longer needed to #ifdef __FBSDID, this is now handled by Makefile.inc1.Ruslan Ermilov2002-04-091-2/+0
| | | | Notes: svn path=/head/; revision=94276
* FreeBSD 4.1 bootstrapping aid (__FBSDID is not there).Ruslan Ermilov2002-02-081-0/+2
| | | | Notes: svn path=/head/; revision=90393
* Fix SCM ID's.David E. O'Brien2002-02-011-2/+3
| | | | Notes: svn path=/head/; revision=90039
* Initialize a var to quiet -Wall.David E. O'Brien1999-12-181-1/+1
| | | | Notes: svn path=/head/; revision=54772
* $Id$ -> $FreeBSD$Peter Wemm1999-08-281-1/+1
| | | | Notes: svn path=/head/; revision=50476
* Add a new library function getobjformat(). It checks all theJohn Polstra1998-09-091-0/+119
standard places ("/etc/objformat", ${OBJFORMAT}, argv) for an indication of the user's preferred object file format. This consolidates some code that was starting to be duplicated in more and more places. Use the new function in ldconfig. Note: I don't think that gcc should use getobjformat(), even though it could. The compiler should limit itself to functions that are widespread, to ease porting and cross-compilation. Notes: svn path=/head/; revision=38960