diff options
author | Simon J. Gerraty <sjg@FreeBSD.org> | 2020-05-20 22:25:46 +0000 |
---|---|---|
committer | Simon J. Gerraty <sjg@FreeBSD.org> | 2020-05-20 22:25:46 +0000 |
commit | 49caa483b3fafffd9cf5197eb30e8bb235aa7410 (patch) | |
tree | 9ee636872e19ac361f51f9f97990c7fa142c2fb6 /contrib/bmake/mk/sys/OpenBSD.mk | |
parent | 4f98ffdd1da28744fbcf31d3d818fc17ea30cb5e (diff) | |
parent | b897d72a5adf5cfad8c79f90e155bae99bdde48c (diff) |
Merge bmake-20200517
Changes since 20181221 are mostly portability related
hence the large gap in versions imported.
There are however some bug fixes, and a rework of filemon handling.
In NetBSD make/filemon/filemon_ktrace.c allows use of fktrace
and elimination of filemon(4) which has not had the TLC it needs.
FreeBSD filemon(4) is in much better shape, so bmake/filemon/filemon_dev.c
allows use of that, with a bit less overhead than the ktrace model.
Summary of changes from ChangeLog
o str.c: empty string does not match % pattern
plus unit-test changes
o var.c: import handling of old sysV style modifier using '%'
o str.c: refactor brk_string
o meta.c: meta_oodate, CHECK_VALID_META is too aggressive for CMD
a blank command is perfectly valid.
o meta.c: meta_oodate, check for corrupted meta file
earlier and more often.
* meta.c: meta_compat_parent check for USE_FILEMON
patch from Soeren Tempel
o meta.c: fix compat mode, need to call meta_job_output()
o job.c: extra fds for meta mode not needed if using filemon_dev
o meta.c: avoid passing NULL to filemon_*() when meta_needed()
returns FALSE.
o filemon/filemon_{dev,ktrace}.c: allow selection of
filemon implementation. filemon_dev.c uses the kernel module
while filemon_ktrace.c leverages the fktrace api available in
NetBSD. filemon_ktrace.c can hopefully form the basis for
adding support for other tracing mechanisms such as strace on
Linux.
o meta.c: when target is out-of-date per normal make rules
record value of .OODATE in meta file.
o parse.c: don't pass NULL to realpath(3)
some versions cannot handle it.
o parse.c: ParseDoDependency: free paths rather than assert
plus more unit-tests
Notes
Notes:
svn path=/head/; revision=361307
Diffstat (limited to 'contrib/bmake/mk/sys/OpenBSD.mk')
-rw-r--r-- | contrib/bmake/mk/sys/OpenBSD.mk | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/contrib/bmake/mk/sys/OpenBSD.mk b/contrib/bmake/mk/sys/OpenBSD.mk index a570c1cb9b8c..8b87ef3e85a4 100644 --- a/contrib/bmake/mk/sys/OpenBSD.mk +++ b/contrib/bmake/mk/sys/OpenBSD.mk @@ -87,8 +87,6 @@ PFLAGS?= COMPILE.p?= ${PC} ${PFLAGS} ${CPPFLAGS} -c LINK.p?= ${PC} ${PFLAGS} ${CPPFLAGS} ${LDFLAGS} -SHELL?= sh - SIZE?= size TSORT?= tsort -q |