cvs commit: src/usr.bin/make arch.c arch.h main.c
Hartmut Brandt
harti at FreeBSD.org
Thu Mar 31 03:35:56 PST 2005
harti 2005-03-31 11:35:56 UTC
FreeBSD src repository
Modified files:
usr.bin/make arch.c arch.h main.c
Log:
Almost complete rewrite of the archive code (except for the Makefile parsing
part). Archive handling was broken at least since the move from BSD ar/ranlib
to GNU binutils because of the different archive format. This rewrite fixes
this by making make to carry around the defines for all formats (it supports)
so it can support all of them independent of the actually used one. The
supported formats are: traditional BSD (this seems to come from V7 at least,
short names only and __.SYMDEF), BSD4.4 (long names with #1/ and __.SYMDEF)
and SysV (extra name table and //). The only format not supported are broken
traditional archives where the member names are truncated to 15 characters.
Errors in the archive are not ignored anymore, but cause make to stop with
an error message. The command line option -A causes these errors to become
non-fatal. This is almost compatible with previous usage except for the
error message printed in any case.
Use a type-safe intrusive list for the archive cache.
Reviewed by: Max Okumoto <okumoto at ucsd.edu> (without new error handling)
Revision Changes Path
1.61 +491 -428 src/usr.bin/make/arch.c
1.3 +3 -1 src/usr.bin/make/arch.h
1.130 +7 -3 src/usr.bin/make/main.c
More information about the cvs-src
mailing list