Merge bmake-20220330Merge commit 'a052cb432096794be5070dc68a2b302eaf5a4783'
Merge bmake-20220204
Merge bmake-20211212commit '2935fe8237c83c1dcb113dd5335733263e68e6fd'
Merge bmake-20210206Changes of interest o unit-tests: use private TMPDIR to avoid errors from other users o avoid strdup in mkTempFile o always use vfork o job.c: do not create empty shell
Merge bmake-20210206Changes of interest o unit-tests: use private TMPDIR to avoid errors from other users o avoid strdup in mkTempFile o always use vfork o job.c: do not create empty shell files in jobs mode reduce unnecessary calls to waitpid o cond.c: fix debug output for comparison operators in conditionals
show more ...
Merge bmake-20210110Quite a lot of churn on style, but lots ofgood work refactoring complicated functionsand lots more unit-tests.Thanks mostly to rillig at NetBSDSome interesting entries from
Merge bmake-20210110Quite a lot of churn on style, but lots ofgood work refactoring complicated functionsand lots more unit-tests.Thanks mostly to rillig at NetBSDSome interesting entries from ChangeLogo .MAKE.{UID,GID} represent uid and gid running make.o allow env var MAKE_OBJDIR_CHECK_WRITABLE=no to skip writable checks in InitObjdir. Explicit .OBJDIR target always allows read-only directory.o add more unit tests for META MODEMerge commit '8e11a9b4250be3c3379c45fa820bff78d99d5946' into mainChange-Id: I464fd4c013067f0915671c1ccc96d2d8090b2b9c
Merge bmake-20201117o allow env var MAKE_OBJDIR_CHECK_WRITABLE=no to skip writable checks in InitObjdir. Explicit .OBJDIR target always allows read-only directory.o More code cleanup and ref
Merge bmake-20201117o allow env var MAKE_OBJDIR_CHECK_WRITABLE=no to skip writable checks in InitObjdir. Explicit .OBJDIR target always allows read-only directory.o More code cleanup and refactoring.o More unit testsMFC after: 1 week
Update to bmake-20201101Lots of new unit-tests increase code coverage.Lots of refactoring, cleanup and simlpification to reducecode size.Fixes for Bug 223564 and 245807Updates to dirdeps.mk
Update to bmake-20201101Lots of new unit-tests increase code coverage.Lots of refactoring, cleanup and simlpification to reducecode size.Fixes for Bug 223564 and 245807Updates to dirdeps.mk and meta2deps.py
Update to bmake-20200710Key changes include reduced noise at end of failed build logand avoid evaluation of unnecessary terms in conditionals.In META MODE; a target flagged .META is out-of-date i
Update to bmake-20200710Key changes include reduced noise at end of failed build logand avoid evaluation of unnecessary terms in conditionals.In META MODE; a target flagged .META is out-of-date if meta fileis missingMFC after: 1 week
Merge bmake-20200517Changes since 20181221 are mostly portability relatedhence the large gap in versions imported.There are however some bug fixes, and a rework of filemon handling.In NetBSD ma
Merge bmake-20200517Changes since 20181221 are mostly portability relatedhence 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 fktraceand 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.callows 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 assertplus more unit-tests