aboutsummaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
authorSimon J. Gerraty <sjg@FreeBSD.org>2025-06-28 02:38:49 +0000
committerSimon J. Gerraty <sjg@FreeBSD.org>2025-06-28 02:38:49 +0000
commit4f8f2bc2946615330eaa2cc1f6b37d97865fa58a (patch)
treeaa7729a97d1faeb358c9d981caadfad466f997a7 /ChangeLog
parent284d1f7d496806b18558ab55e4654fd5e96d6a3e (diff)
Import bmake-20250618vendor/NetBSD/bmake/20250618
Intersting/relevant changes since bmake-20250414 ChangeLog since bmake-20250414 2025-06-18 Simon J Gerraty <sjg@beast.crufty.net> * VERSION (_MAKE_VERSION): 20250618 Merge with NetBSD make, pick up o parse.c: in a warning without location information, print the stack trace 2025-06-15 Simon J Gerraty <sjg@beast.crufty.net> * VERSION (_MAKE_VERSION): 20250615 Merge with NetBSD make, pick up o add on-demand inter-process stack traces o job.c,meta.c: do not discard empty lines in the output of a command o job.c: add job prefix if necessary in non-default filtered mode o parse.c,var.c: skip inter-process stack trace when MAKE_STACK_TRACE=no 2025-06-12 Simon J Gerraty <sjg@beast.crufty.net> * VERSION (_MAKE_VERSION): 20250612 Merge with NetBSD make, pick up o use a common style for unexpected error messages o parse.c: add program name to stack traces from sub-makes add quotes to "in directory" line in stack traces o var.c: check variable names for invalid characters when there are no modifiers to apply. This detects and warns about gmake syntax like: $(addprefix -I, $(LIST)) 2025-06-09 Simon J Gerraty <sjg@beast.crufty.net> * VERSION (_MAKE_VERSION): 20250606 Merge with NetBSD make, pick up o main.c: fix bug in handling of output of children in jobs mode 2025-05-28 Simon J Gerraty <sjg@beast.crufty.net> * VERSION (_MAKE_VERSION): 20250528 Merge with NetBSD make, pick up o show contents of MAKEFLAGS in the stack trace. o main.c: delay warning about bogus -J flag, if we end up in compat mode before the call to InitMaxJobs, the warning isn't necessary. 2025-05-25 Simon J Gerraty <sjg@beast.crufty.net> * VERSION (_MAKE_VERSION): 20250525 Merge with NetBSD make, pick up o main.c: set .CURDIR earlier so it can be reported in some errors. 2025-05-20 Simon J Gerraty <sjg@beast.crufty.net> * VERSION (_MAKE_VERSION): 20250520 Merge with NetBSD make, pick up o rename variables, remove now-redundant comments o job.c: clean up building the shell commands in parallel mode remove timeout for polling in parallel mode o main.c: clean up error message for malformed internal -J option 2025-05-11 Simon J Gerraty <sjg@beast.crufty.net> * VERSION (_MAKE_VERSION): 20250511 Merge with NetBSD make, pick up o job.c: rename token pool variables to be more descriptive move ContinueJobs further up, to eliminate a forward declaration error out if writing to an internal pipe fails clean up constant names and function names use uniform debug log messages for the token pool in the debug log, replace magic numbers with identifiers o main.c: clean up error message for malformed internal -J option o make.c: replace bitset in trace output with descriptive node attributes o targ.c: add end marker for -dg1, -dg2 and -dg3 debug log o var.c: fix order of error messages in the ":?" modifier 2025-04-25 Simon J Gerraty <sjg@beast.crufty.net> * VERSION (_MAKE_VERSION): 20250424 Merge with NetBSD make, pick up o cleanup; replace unsigned int with just unsigned Inline the TMPPAT macro, as it is only needed in a single place o move struct Job from job.h to job.c o job.c: group the code for handling the job token pool avoid excessive values of -j o make.c: fix grammar in debug log message mk/ChangeLog since bmake-20250414 2025-05-28 Simon J Gerraty <sjg@beast.crufty.net> * install-mk (MK_VERSION): 20250528 * add dirdeps2dplibs.mk 2025-05-18 Simon J Gerraty <sjg@beast.crufty.net> * install-mk (MK_VERSION): 20250518 * meta.autodep.mk (META_FILES): re-work to fix filtering. if OPTIMIZE_OBJECT_META_FILES==yes provide a default META_FILE_OBJ_FILTER that selects a valid .SUFFIX to match *o.meta, there's no guarantee that it will be as simple as .o or .So etc. We have to defer evaluation until the target script is run for any of these filters to have any effect. Use :S,${.OBJDIR}/,, rather than :T incase there are objects in sub-dirs. * lib.mk: leverage ${.SUFFIXES} when setting dependencies. * add UPDATE_DEPENDFILE as a dependent option - follows DIRDEPS_BUILD and use MK_UPDATE_DEPENDFILE as default for UPDATE_DEPENDFILE when we think it should be yes. This allows override with -DWITH[OUT]_UPDATE_DEPENDFILE without overriding UPDATE_DEPENDFILE directly - which can lead to trouble. 2025-05-16 Simon J Gerraty <sjg@beast.crufty.net> * install-mk (MK_VERSION): 20250515 * meta2deps.py: resolve the target of a Move or Link first and track the last path resolved, then if the src is a relative path we can easily use that last path to resolve the src correctly. * meta2deps.sh: for a Move or Link add the dir of target path to the list used to resolve the src path.
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog85
1 files changed, 85 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 1ec90b7bccc8..0a5eced2d439 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,88 @@
+2025-06-18 Simon J Gerraty <sjg@beast.crufty.net>
+
+ * VERSION (_MAKE_VERSION): 20250618
+ Merge with NetBSD make, pick up
+ o parse.c: in a warning without location information,
+ print the stack trace
+
+2025-06-15 Simon J Gerraty <sjg@beast.crufty.net>
+
+ * VERSION (_MAKE_VERSION): 20250615
+ Merge with NetBSD make, pick up
+ o add on-demand inter-process stack traces
+ o job.c,meta.c: do not discard empty lines in the output of a command
+ o job.c: add job prefix if necessary in non-default filtered mode
+ o parse.c,var.c: skip inter-process stack trace when
+ MAKE_STACK_TRACE=no
+
+2025-06-12 Simon J Gerraty <sjg@beast.crufty.net>
+
+ * VERSION (_MAKE_VERSION): 20250612
+ Merge with NetBSD make, pick up
+ o use a common style for unexpected error messages
+ o parse.c: add program name to stack traces from sub-makes
+ add quotes to "in directory" line in stack traces
+ o var.c: check variable names for invalid characters when there
+ are no modifiers to apply. This detects and warns about gmake
+ syntax like: $(addprefix -I, $(LIST))
+
+2025-06-09 Simon J Gerraty <sjg@beast.crufty.net>
+
+ * VERSION (_MAKE_VERSION): 20250606
+ Merge with NetBSD make, pick up
+ o main.c: fix bug in handling of output of children in jobs mode
+
+2025-05-28 Simon J Gerraty <sjg@beast.crufty.net>
+
+ * VERSION (_MAKE_VERSION): 20250528
+ Merge with NetBSD make, pick up
+ o show contents of MAKEFLAGS in the stack trace.
+ o main.c: delay warning about bogus -J flag, if we end up in
+ compat mode before the call to InitMaxJobs, the warning isn't
+ necessary.
+
+2025-05-25 Simon J Gerraty <sjg@beast.crufty.net>
+
+ * VERSION (_MAKE_VERSION): 20250525
+ Merge with NetBSD make, pick up
+ o main.c: set .CURDIR earlier so it can be reported in some errors.
+
+2025-05-20 Simon J Gerraty <sjg@beast.crufty.net>
+
+ * VERSION (_MAKE_VERSION): 20250520
+ Merge with NetBSD make, pick up
+ o rename variables, remove now-redundant comments
+ o job.c: clean up building the shell commands in parallel mode
+ remove timeout for polling in parallel mode
+ o main.c: clean up error message for malformed internal -J option
+
+2025-05-11 Simon J Gerraty <sjg@beast.crufty.net>
+
+ * VERSION (_MAKE_VERSION): 20250511
+ Merge with NetBSD make, pick up
+ o job.c: rename token pool variables to be more descriptive
+ move ContinueJobs further up, to eliminate a forward declaration
+ error out if writing to an internal pipe fails
+ clean up constant names and function names
+ use uniform debug log messages for the token pool
+ in the debug log, replace magic numbers with identifiers
+ o main.c: clean up error message for malformed internal -J option
+ o make.c: replace bitset in trace output with descriptive node
+ attributes
+ o targ.c: add end marker for -dg1, -dg2 and -dg3 debug log
+ o var.c: fix order of error messages in the ":?" modifier
+
+2025-04-25 Simon J Gerraty <sjg@beast.crufty.net>
+
+ * VERSION (_MAKE_VERSION): 20250424
+ Merge with NetBSD make, pick up
+ o cleanup; replace unsigned int with just unsigned
+ Inline the TMPPAT macro, as it is only needed in a single place
+ o move struct Job from job.h to job.c
+ o job.c: group the code for handling the job token pool
+ avoid excessive values of -j
+ o make.c: fix grammar in debug log message
+
2025-04-14 Simon J Gerraty <sjg@beast.crufty.net>
* VERSION (_MAKE_VERSION): 20250414