FreeBSD-Date: 2005/03/31 11:35:56
authorMax Okumoto <okumoto@dragonflybsd.org>
Thu, 7 Apr 2005 00:37:31 +0000 (00:37 +0000)
committerMax Okumoto <okumoto@dragonflybsd.org>
Thu, 7 Apr 2005 00:37:31 +0000 (00:37 +0000)
commitdd41638526ebdcbbaf1433171eab42bc42ca42c4
tree96e750d025aacb81202099ece676715c24606bd6
parent6a9f4aee716da7ac5a697982ba9fdd474b11e1c3
FreeBSD-Date: 2005/03/31 11:35:56
FreeBSD-Date: 2005/03/31 11:40:53
Author: harti

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.

Document the new -A flag for ignoring archive errors.

Reviewed by:    Max Okumoto <okumoto@ucsd.edu> (without new error handling)
usr.bin/make/arch.c
usr.bin/make/arch.h
usr.bin/make/main.c
usr.bin/make/make.1