2022-10-16 19:50:13 +00:00
|
|
|
|
GNU Make NEWS -*-indented-text-*-
|
1997-04-07 07:21:16 +00:00
|
|
|
|
History of user-visible changes.
|
2023-02-26 16:01:43 +00:00
|
|
|
|
26 February 2023
|
1995-03-07 23:44:43 +00:00
|
|
|
|
|
2006-02-20 03:34:02 +00:00
|
|
|
|
See the end of this file for copyrights and conditions.
|
1995-03-07 23:44:43 +00:00
|
|
|
|
|
2022-10-16 19:50:13 +00:00
|
|
|
|
All user-visible changes are more fully described in the GNU Make manual,
|
2018-08-04 23:20:58 +00:00
|
|
|
|
which is contained in this distribution as the file doc/make.texi.
|
2022-10-16 19:50:13 +00:00
|
|
|
|
See the README file and the GNU Make manual for instructions for
|
2005-02-16 05:38:10 +00:00
|
|
|
|
reporting bugs.
|
2023-01-14 19:05:18 +00:00
|
|
|
|
|
2023-02-26 20:40:18 +00:00
|
|
|
|
|
2023-06-19 14:04:47 +00:00
|
|
|
|
Version 4.4.90 (26 Feb 2023)
|
2023-02-26 20:40:18 +00:00
|
|
|
|
|
|
|
|
|
A complete list of bugs fixed in this version is available here:
|
|
|
|
|
|
|
|
|
|
https://sv.gnu.org/bugs/index.php?group=make&report_id=111&fix_release_id=111&set=custom
|
|
|
|
|
|
2023-01-15 22:32:15 +00:00
|
|
|
|
* WARNING: Removed AmigaOS support!
|
|
|
|
|
This version of GNU Make no longer supports AmigaOS. If you need support
|
2023-02-26 23:04:14 +00:00
|
|
|
|
for AmigaOS please use one of the older versions of GNU Make.
|
|
|
|
|
|
2023-05-06 20:21:39 +00:00
|
|
|
|
* WARNING: Loaded Object ABI incompatibility!
|
|
|
|
|
This release changes the loaded object feature from "technology preview" to
|
|
|
|
|
fully-supported feature. However, it introduces an ABI incompatibility with
|
|
|
|
|
previous releases: the setup function now takes an ABI version as its first
|
2024-02-04 16:31:19 +00:00
|
|
|
|
argument. At compile time you can test the GMK_ABI_VERSION constant to
|
|
|
|
|
detect which ABI should be used. At runtime your initialization function
|
|
|
|
|
can check the provided ABI version to verify it's being loaded correctly.
|
2023-05-06 20:21:39 +00:00
|
|
|
|
|
2024-01-06 22:42:40 +00:00
|
|
|
|
* WARNING: Backward-incompatibility!
|
|
|
|
|
Parsing of the first argument in ifeq/ifneq with () has been cleaned up.
|
|
|
|
|
When locating the separating "," any variable reference (single char as well
|
|
|
|
|
as using $() or ${}) is skipped. However parentheses that are not part of
|
|
|
|
|
or contained in variable references will not be counted. This means that
|
|
|
|
|
things like "ifeq ((foo,bar),)" are now syntax errors. Use a variable to
|
|
|
|
|
hide the comma if needed: "COMMA = ," / "ifeq ((foo$(COMMA)bar),)".
|
2024-02-04 16:31:19 +00:00
|
|
|
|
See https://savannah.gnu.org/bugs/index.php?64402
|
2024-01-06 22:42:40 +00:00
|
|
|
|
|
2024-02-04 16:16:40 +00:00
|
|
|
|
* WARNING: Backward-incompatibility!
|
|
|
|
|
If -e is given all environment variables will now have an origin of
|
|
|
|
|
"environment override" even if they are not otherwise set in the makefile.
|
|
|
|
|
See https://savannah.gnu.org/bugs/index.php?64803
|
|
|
|
|
|
2024-02-04 18:04:05 +00:00
|
|
|
|
* WARNING: Backward-incompatibility!
|
|
|
|
|
The behavior of appending to pattern-specific variables has been clarified
|
|
|
|
|
when combined with command-line settings or -e overrides.
|
|
|
|
|
See https://savannah.gnu.org/bugs/index.php?64822
|
|
|
|
|
|
2024-01-09 04:14:57 +00:00
|
|
|
|
* NOTE: Deprecated behavior.
|
|
|
|
|
The check in GNU Make 4.3 for suffix rules with prerequisites didn't check
|
|
|
|
|
single-suffix rules, only double-suffix rules. Add the missing check.
|
|
|
|
|
|
2024-01-11 15:05:27 +00:00
|
|
|
|
* New feature: Any assignment operator can be made conditional
|
|
|
|
|
GNU Make has long supported the conditional operator "?=" which creates a
|
|
|
|
|
recursive variable set to a value if and only if the variable is not already
|
|
|
|
|
defined. In this release, the "?" can precede any assignment operator to
|
|
|
|
|
make it conditional. For example, "?:=" creates a simply-expanded variable
|
|
|
|
|
and expands the right-hand side if and only if the variable is not already
|
|
|
|
|
defined. The constructs "?::=", "?:::=", and "?!=" also behave as expected.
|
|
|
|
|
|
2023-05-07 20:51:12 +00:00
|
|
|
|
* New feature: Unload function for loaded objects
|
|
|
|
|
When a loaded object needs to be unloaded by GNU Make, it will invoke an
|
|
|
|
|
unload function (if one is defined) beforehand that allows the object to
|
|
|
|
|
perform cleanup operations.
|
|
|
|
|
Original idea and implementation: Dmitry Goncharov <dgoncharov@users.sf.net>
|
|
|
|
|
|
2023-02-26 23:04:14 +00:00
|
|
|
|
* New feature: Makefile warning reporting control
|
|
|
|
|
A new option "--warn" controls reporting of warnings for makefiles. Actions
|
2023-02-26 23:24:30 +00:00
|
|
|
|
can be set to "ignore", "warn", or "error". Two new warnings are reported:
|
|
|
|
|
assigning to invalid variable names, and referencing invalid variable names
|
|
|
|
|
(both set to "warn" by default), in addition to the existing warning for
|
|
|
|
|
undefined variables (defaults to "ignore"). "--warn-undefined-variables" is
|
|
|
|
|
deprecated, and is translated to "--warn=undefined-vars" internally.
|
2023-01-15 22:32:15 +00:00
|
|
|
|
|
2023-04-02 14:29:19 +00:00
|
|
|
|
* New feature: Control warnings with the .WARNINGS variable
|
2023-05-07 20:51:12 +00:00
|
|
|
|
In addition to --warn from the command line, which takes effect for make
|
2023-04-02 14:29:19 +00:00
|
|
|
|
invoked recursively, warnings can be controlled only for the current
|
|
|
|
|
instance of make using the .WARNINGS variable.
|
|
|
|
|
|
2024-01-09 04:14:57 +00:00
|
|
|
|
* New feature: Printing targets defined by the makefile
|
|
|
|
|
A new option "--print-targets" will print all explicit, non-special targets
|
|
|
|
|
defined in the makefiles, one per line, then exit with success. No recipes
|
|
|
|
|
are invoked and no makefiles are re-built.
|
|
|
|
|
|
2024-05-19 22:56:12 +00:00
|
|
|
|
* Warnings for detecting circular dependencies are controllable via warning
|
|
|
|
|
reporting, with the name "circular-dep".
|
|
|
|
|
|
2024-01-06 22:42:40 +00:00
|
|
|
|
* 'make --print-data-base' (or 'make -p') now outputs time of day
|
|
|
|
|
using the same form as for file timestamps, e.g., "2023-05-10
|
|
|
|
|
10:43:57.570558743". Previously it used the form "Wed May 10
|
|
|
|
|
10:43:57 2023", which has less detail and is harder to compare.
|
|
|
|
|
|
2023-05-23 03:36:13 +00:00
|
|
|
|
* Conditional statements starting with the recipe prefix were sometimes
|
|
|
|
|
interpreted in previous versions. As per the documentation, lines starting
|
|
|
|
|
with the recipe prefix are now never considered conditional statements.
|
|
|
|
|
|
2023-04-23 15:35:02 +00:00
|
|
|
|
* Tests in the regression test suite now are run in their own directory to
|
|
|
|
|
avoid cross-contamination and allow cleanup if the tests are interrupted.
|
2023-05-06 18:45:56 +00:00
|
|
|
|
More information is printed about failing tests.
|
2023-04-23 15:35:02 +00:00
|
|
|
|
|
2022-12-24 20:48:48 +00:00
|
|
|
|
|
2023-02-26 16:01:43 +00:00
|
|
|
|
Version 4.4.1 (26 Feb 2023)
|
2022-12-24 20:48:48 +00:00
|
|
|
|
|
|
|
|
|
This release is primarily a bug-fix release.
|
|
|
|
|
A complete list of bugs fixed in this version is available here:
|
|
|
|
|
|
|
|
|
|
https://sv.gnu.org/bugs/index.php?group=make&report_id=111&fix_release_id=110&set=custom
|
|
|
|
|
|
|
|
|
|
* WARNING: Backward-incompatibility!
|
2023-01-02 16:23:09 +00:00
|
|
|
|
In previous releases it was not well-defined when updates to MAKEFLAGS made
|
2022-12-24 20:48:48 +00:00
|
|
|
|
inside a makefile would be visible. This release ensures they are visible
|
|
|
|
|
immediately, even when invoking $(shell ...) functions. Also, command line
|
|
|
|
|
variable assignments are now always present in MAKEFLAGS, even when parsing
|
|
|
|
|
makefiles.
|
|
|
|
|
Implementation provided by Dmitry Goncharov <dgoncharov@users.sf.net>
|
|
|
|
|
|
2023-01-03 06:57:35 +00:00
|
|
|
|
* New feature: Parallel builds of archives
|
|
|
|
|
Previously it was not possible to use parallel builds with archives. It is
|
|
|
|
|
still not possible using the built-in rules, however you can now override
|
|
|
|
|
the built-in rules with a slightly different set of rules and use parallel
|
|
|
|
|
builds with archive creation. See the "Dangers When Using Archives" section
|
|
|
|
|
of the GNU Make manual, and https://savannah.gnu.org/bugs/index.php?14927
|
|
|
|
|
|
2023-01-02 16:23:09 +00:00
|
|
|
|
* Previously target-specific variables would inherit their "export" capability
|
|
|
|
|
from parent target-specific variables even if they were marked private. Now
|
|
|
|
|
private parent target-specific variables have no affect. For more details
|
|
|
|
|
see https://savannah.gnu.org/bugs/index.php?61463
|
|
|
|
|
|
2023-02-19 14:53:26 +00:00
|
|
|
|
* Disable FIFO jobserver on GNU/Hurd and Cygwin
|
|
|
|
|
Experimentation shows that the new FIFO-based jobserver doesn't work well on
|
|
|
|
|
GNU/Hurd or Cygwin: revert these systems to use the pipe-based jobserver.
|
|
|
|
|
|
2023-02-26 16:01:43 +00:00
|
|
|
|
* Updates to allow building on OS/2
|
|
|
|
|
Provided by KO Myung-Hun <komh78@gmail.com>
|
|
|
|
|
|
|
|
|
|
* New platform: GNU Make is supported on z/OS
|
|
|
|
|
Thanks to Igor Todorovski <itodorov@ca.ibm.com> for the patches and testing
|
|
|
|
|
assistance.
|
|
|
|
|
|
2020-01-21 00:24:57 +00:00
|
|
|
|
|
2022-10-28 21:37:09 +00:00
|
|
|
|
Version 4.4 (31 Oct 2022)
|
2020-01-21 00:24:57 +00:00
|
|
|
|
|
|
|
|
|
A complete list of bugs fixed in this version is available here:
|
|
|
|
|
|
|
|
|
|
https://sv.gnu.org/bugs/index.php?group=make&report_id=111&fix_release_id=109&set=custom
|
|
|
|
|
|
2022-10-01 19:44:32 +00:00
|
|
|
|
* WARNING: Deprecation!
|
|
|
|
|
The following systems are deprecated in this release:
|
|
|
|
|
- OS/2 (EMX)
|
|
|
|
|
- AmigaOS
|
2022-10-03 18:37:45 +00:00
|
|
|
|
- Xenix
|
2022-10-09 16:28:58 +00:00
|
|
|
|
- Cray
|
2022-10-16 19:50:13 +00:00
|
|
|
|
In the NEXT release of GNU Make, support for these systems will be removed.
|
2022-10-01 19:44:32 +00:00
|
|
|
|
If you want to see them continue to be supported, contact <bug-make@gnu.org>.
|
|
|
|
|
|
2022-10-02 14:18:21 +00:00
|
|
|
|
* WARNING: Future backward-incompatibility!
|
2022-10-16 19:50:13 +00:00
|
|
|
|
In the NEXT release of GNU Make, pattern rules will implement the same
|
2022-10-02 14:18:21 +00:00
|
|
|
|
behavior change for multiple targets as explicit grouped targets, below: if
|
|
|
|
|
any target of the rule is needed by the build, the recipe will be invoked if
|
|
|
|
|
any target of the rule is missing or out of date. During testing some
|
|
|
|
|
makefiles were found to contain pattern rules that do not build all targets;
|
|
|
|
|
this can cause issues so we are delaying this change for one release cycle
|
2022-10-16 19:50:13 +00:00
|
|
|
|
to allow these makefiles to be updated. GNU Make shows a warning if it
|
2022-10-02 14:18:21 +00:00
|
|
|
|
detects this situation: "pattern recipe did not update peer target".
|
|
|
|
|
|
2022-09-24 22:42:01 +00:00
|
|
|
|
* WARNING: Backward-incompatibility!
|
2022-10-16 19:50:13 +00:00
|
|
|
|
GNU Make now uses temporary files in more situations than previous releases.
|
2022-09-24 22:42:01 +00:00
|
|
|
|
If your build system sets TMPDIR (or TMP or TEMP on Windows) and deletes the
|
|
|
|
|
contents during the build, or uses restrictive permissions, this may cause
|
|
|
|
|
problems. You can choose an alternative temporary directory only for use by
|
2022-10-16 19:50:13 +00:00
|
|
|
|
GNU Make by setting the new MAKE_TMPDIR environment variable before invoking
|
2022-10-01 19:44:32 +00:00
|
|
|
|
make. Note that this value CANNOT be set inside the makefile, since make
|
|
|
|
|
needs to find its temporary directory before the makefiles are parsed.
|
2022-09-24 22:42:01 +00:00
|
|
|
|
|
|
|
|
|
* WARNING: Backward-incompatibility!
|
2022-10-02 14:18:21 +00:00
|
|
|
|
Previously each target in a explicit grouped target rule was considered
|
|
|
|
|
individually: if the targets needed by the build were not out of date the
|
|
|
|
|
recipe was not run even if other targets in the group were out of date. Now
|
|
|
|
|
if any of the grouped targets are needed by the build, then if any of the
|
|
|
|
|
grouped targets are out of date the recipe is run and all targets in the
|
|
|
|
|
group are considered updated.
|
2022-09-24 22:42:01 +00:00
|
|
|
|
|
2020-03-30 18:07:10 +00:00
|
|
|
|
* WARNING: Backward-incompatibility!
|
|
|
|
|
Previously if --no-print-directory was seen anywhere in the environment or
|
2020-07-19 17:56:23 +00:00
|
|
|
|
command line it would take precedence over any --print-directory. Now, the
|
2020-03-30 18:07:10 +00:00
|
|
|
|
last setting of directory printing options seen will be used, so a command
|
|
|
|
|
line such as "--no-print-directory -w" _will_ show directory entry/exits.
|
|
|
|
|
|
2020-07-19 17:56:23 +00:00
|
|
|
|
* WARNING: Backward-incompatibility!
|
|
|
|
|
Previously the order in which makefiles were remade was not explicitly
|
|
|
|
|
stated, but it was (roughly) the inverse of the order in which they were
|
|
|
|
|
processed by make. In this release, the order in which makefiles are
|
|
|
|
|
rebuilt is the same order in which make processed them, and this is defined
|
2022-10-16 19:50:13 +00:00
|
|
|
|
to be true in the GNU Make manual.
|
2020-07-19 17:56:23 +00:00
|
|
|
|
|
2021-04-19 21:27:54 +00:00
|
|
|
|
* WARNING: Backward-incompatibility!
|
|
|
|
|
Previously only simple (one-letter) options were added to the MAKEFLAGS
|
2022-09-13 22:22:29 +00:00
|
|
|
|
variable that was visible while parsing makefiles. Now, all options are
|
|
|
|
|
available in MAKEFLAGS. If you want to check MAKEFLAGS for a one-letter
|
|
|
|
|
option, expanding "$(firstword -$(MAKEFLAGS))" is a reliable way to return
|
|
|
|
|
the set of one-letter options which can be examined via findstring, etc.
|
2021-04-19 21:27:54 +00:00
|
|
|
|
|
2022-06-19 00:25:30 +00:00
|
|
|
|
* WARNING: Backward-incompatibility!
|
|
|
|
|
Previously makefile variables marked as export were not exported to commands
|
|
|
|
|
started by the $(shell ...) function. Now, all exported variables are
|
2022-09-10 20:21:23 +00:00
|
|
|
|
exported to $(shell ...). If this leads to recursion during expansion, then
|
|
|
|
|
for backward-compatibility the value from the original environment is used.
|
2022-06-19 00:25:30 +00:00
|
|
|
|
To detect this change search for 'shell-export' in the .FEATURES variable.
|
|
|
|
|
|
2020-07-19 18:07:01 +00:00
|
|
|
|
* WARNING: New build requirement
|
2022-10-16 19:50:13 +00:00
|
|
|
|
GNU Make utilizes facilities from GNU Gnulib: Gnulib requires certain C99
|
|
|
|
|
features in the C compiler and so these features are required by GNU Make:
|
2020-07-19 18:07:01 +00:00
|
|
|
|
https://www.gnu.org/software/gnulib/manual/html_node/C99-features-assumed.html
|
|
|
|
|
The configure script should verify the compiler has these features.
|
|
|
|
|
|
2022-09-12 22:18:49 +00:00
|
|
|
|
* New feature: The .WAIT special target
|
|
|
|
|
If the .WAIT target appears between two prerequisites of a target, then
|
2022-10-16 19:50:13 +00:00
|
|
|
|
GNU Make will wait for all of the targets to the left of .WAIT in the list
|
2022-09-12 22:18:49 +00:00
|
|
|
|
to complete before starting any of the targets to the right of .WAIT.
|
|
|
|
|
This feature is available in some other versions of make, and it will be
|
|
|
|
|
required by an upcoming version of the POSIX standard for make.
|
|
|
|
|
Different patches were made by Alexey Neyman <alex.neyman@auriga.ru> (2005)
|
|
|
|
|
and Steffen Nurpmeso <steffen@sdaoden.eu> (2020) that were useful but the
|
|
|
|
|
result is a different implementation (closer to Alexey's idea).
|
|
|
|
|
|
|
|
|
|
* New feature: .NOTPARALLEL accepts prerequisites
|
|
|
|
|
If the .NOTPARALLEL special target has prerequisites then all prerequisites
|
|
|
|
|
of those targets will be run serially (as if .WAIT was specified between
|
|
|
|
|
each prerequisite).
|
|
|
|
|
|
2021-05-30 17:48:29 +00:00
|
|
|
|
* New feature: The .NOTINTERMEDIATE special target
|
2022-10-23 02:40:57 +00:00
|
|
|
|
.NOTINTERMEDIATE disables intermediate behavior for specific files, for all
|
2021-05-30 17:48:29 +00:00
|
|
|
|
files built using a pattern, or for the entire makefile.
|
|
|
|
|
Implementation provided by Dmitry Goncharov <dgoncharov@users.sf.net>
|
|
|
|
|
|
2020-11-01 21:48:53 +00:00
|
|
|
|
* New feature: The $(let ...) function
|
2020-12-25 18:00:10 +00:00
|
|
|
|
This function allows user-defined functions to define a set of local
|
|
|
|
|
variables: values can be assigned to these variables from within the
|
2020-11-01 21:48:53 +00:00
|
|
|
|
user-defined function and they will not impact global variable assignments.
|
|
|
|
|
Implementation provided by Jouke Witteveen <j.witteveen@gmail.com>
|
|
|
|
|
|
2021-07-16 12:04:41 +00:00
|
|
|
|
* New feature: The $(intcmp ...) function
|
|
|
|
|
This function allows conditional evaluation controlled by a numerical
|
|
|
|
|
comparison.
|
2021-11-28 19:34:05 +00:00
|
|
|
|
Implementation provided by Jouke Witteveen <j.witteveen@gmail.com>
|
2021-07-16 12:04:41 +00:00
|
|
|
|
|
2022-01-19 18:44:22 +00:00
|
|
|
|
* New feature: Improved support for -l / --load-average
|
2022-10-16 19:50:13 +00:00
|
|
|
|
On systems that provide /proc/loadavg (Linux), GNU Make will use it to
|
2022-01-19 18:44:22 +00:00
|
|
|
|
determine the number of runnable jobs and use this as the current load,
|
|
|
|
|
avoiding the need for heuristics.
|
|
|
|
|
Implementation provided by Sven C. Dack <sdack@gmx.com>
|
|
|
|
|
|
2022-06-04 19:48:01 +00:00
|
|
|
|
* New feature: The --shuffle command line option
|
|
|
|
|
This option reorders goals and prerequisites to simulate non-determinism
|
|
|
|
|
that may be seen using parallel build. Shuffle mode allows a form of "fuzz
|
|
|
|
|
testing" of parallel builds to verify that all prerequisites are correctly
|
|
|
|
|
described in the makefile.
|
|
|
|
|
Implementation provided by Sergei Trofimovich <siarheit@google.com>
|
|
|
|
|
|
Support implementing the jobserver using named pipes
Using anonymous pipes for jobserver support has some advantages:
for example there is nothing on disk that needs to be cleaned up.
However it has many obscure problems, related to the fact that in
order for it to work we need to ensure these resources are properly
passed through to child processes that want to use the jobserver.
At the same time we don't want to pass the pipe to process which
DON'T know about the jobserver.
Other processes can open file descriptors which we then think are
our jobserver, but aren't. And, we open the pipe file descriptors
in blocking mode which doesn't work for all users.
See issues such as SV 57178, SV 57242, and SV 62397
To avoid these issues, use named pipes (on systems where they are
available) instead of anonoymous pipes. This simplifies many things:
we never need to pass open file descriptors to our children; they
can open the jobserver named pipe. We don't need to worry about
recursive vs. non-recursive children. Users don't have to "pass
through" the resources if they are invoking sub-makes. Each child
can open its own file descriptor and set blocking as needed.
The downside is the named pipe exists on disk and so must be cleaned
up when the "top-level" make instance exits.
In order to allow make to continue to be used in build systems where
older versions of GNU make, or other tools that want to use the
jobserver, but don't understand named pipes, introduce a new option
--jobserver-style that allows the user to choose anonymous pipes.
* NEWS: Announce the change and the --jobserver-style option.
* doc/make.1: Add --jobserver-style documentation.
* doc/make.texi (Special Variables): Add missing items to .FEATURES.
(Options Summary): Add --jobserver-style.
(POSIX Jobserver): Named pipes, changes to --jobserver-auth, and the
--jobserver-style option.
(Windows Jobserver): Document --jobserver-style for Windows.
* configure.ac: Check for mkfifo.
* src/config.h-vms.template: Undefined HAVE_MKFIFO.
* src/config.h.W32.template: Ditto.
* src/main.c: Add jobserver-style as a new command line option.
(main): Add jobserver-fifo to .FEATURES if supported. Pass the style
option to jobserver_setup().
* src/os.h (jobserver_setup): Accept a style string option.
* src/posixos.c (enum js_type): Enumeration of the jobserver style.
(js_type): Which style we are currently using.
(fifo_name): The path to the named pipe (if in use).
(jobserver_setup): If no style is given, or "fifo" is given, set up a
named pipe: get a temporary file and use mkfifo() on it, then open it
for reading and writing. If something fails fall back to anonymous
pipes.
(jobserver_parse_auth): Parse jobserver-auth to determine the style.
If we are using a named pipe, open it. If we're using anonymous pipes
ensure they're valid as before.
(jobserver_get_invalid_auth): Don't invalidate the jobserver when
using named pipes.
(jobserver_clear): Clean up memory used for named pipes.
(jobserver_acquire_all): Unlink the named pipe when done.
* src/w32/w32os.c (jobserver_setup): Check the style argument.
* tests/scripts/features/jobserver: Use --jobserver-style to test
the anonymous pipe behavior, and also test named pipe/semaphore
behavior. Check invalid jobserver-style options.
* tests/scripts/functions/shell: Use --jobserver-style to test the
anonymous pipe behavior, and also test named pipe/semaphore
behavior.
2022-08-02 22:07:27 +00:00
|
|
|
|
* New feature: The --jobserver-style command line option and named pipes
|
|
|
|
|
A new jobserver method is used on systems where mkfifo(3) is supported.
|
|
|
|
|
This solves a number of obscure issues related to using the jobserver
|
2022-10-16 19:50:13 +00:00
|
|
|
|
and recursive invocations of GNU Make. This change means that sub-makes
|
Support implementing the jobserver using named pipes
Using anonymous pipes for jobserver support has some advantages:
for example there is nothing on disk that needs to be cleaned up.
However it has many obscure problems, related to the fact that in
order for it to work we need to ensure these resources are properly
passed through to child processes that want to use the jobserver.
At the same time we don't want to pass the pipe to process which
DON'T know about the jobserver.
Other processes can open file descriptors which we then think are
our jobserver, but aren't. And, we open the pipe file descriptors
in blocking mode which doesn't work for all users.
See issues such as SV 57178, SV 57242, and SV 62397
To avoid these issues, use named pipes (on systems where they are
available) instead of anonoymous pipes. This simplifies many things:
we never need to pass open file descriptors to our children; they
can open the jobserver named pipe. We don't need to worry about
recursive vs. non-recursive children. Users don't have to "pass
through" the resources if they are invoking sub-makes. Each child
can open its own file descriptor and set blocking as needed.
The downside is the named pipe exists on disk and so must be cleaned
up when the "top-level" make instance exits.
In order to allow make to continue to be used in build systems where
older versions of GNU make, or other tools that want to use the
jobserver, but don't understand named pipes, introduce a new option
--jobserver-style that allows the user to choose anonymous pipes.
* NEWS: Announce the change and the --jobserver-style option.
* doc/make.1: Add --jobserver-style documentation.
* doc/make.texi (Special Variables): Add missing items to .FEATURES.
(Options Summary): Add --jobserver-style.
(POSIX Jobserver): Named pipes, changes to --jobserver-auth, and the
--jobserver-style option.
(Windows Jobserver): Document --jobserver-style for Windows.
* configure.ac: Check for mkfifo.
* src/config.h-vms.template: Undefined HAVE_MKFIFO.
* src/config.h.W32.template: Ditto.
* src/main.c: Add jobserver-style as a new command line option.
(main): Add jobserver-fifo to .FEATURES if supported. Pass the style
option to jobserver_setup().
* src/os.h (jobserver_setup): Accept a style string option.
* src/posixos.c (enum js_type): Enumeration of the jobserver style.
(js_type): Which style we are currently using.
(fifo_name): The path to the named pipe (if in use).
(jobserver_setup): If no style is given, or "fifo" is given, set up a
named pipe: get a temporary file and use mkfifo() on it, then open it
for reading and writing. If something fails fall back to anonymous
pipes.
(jobserver_parse_auth): Parse jobserver-auth to determine the style.
If we are using a named pipe, open it. If we're using anonymous pipes
ensure they're valid as before.
(jobserver_get_invalid_auth): Don't invalidate the jobserver when
using named pipes.
(jobserver_clear): Clean up memory used for named pipes.
(jobserver_acquire_all): Unlink the named pipe when done.
* src/w32/w32os.c (jobserver_setup): Check the style argument.
* tests/scripts/features/jobserver: Use --jobserver-style to test
the anonymous pipe behavior, and also test named pipe/semaphore
behavior. Check invalid jobserver-style options.
* tests/scripts/functions/shell: Use --jobserver-style to test the
anonymous pipe behavior, and also test named pipe/semaphore
behavior.
2022-08-02 22:07:27 +00:00
|
|
|
|
will connect to the jobserver even if they are not marked as recursive.
|
|
|
|
|
It also means that other tools that want to participate in the jobserver
|
2022-10-16 19:50:13 +00:00
|
|
|
|
will need to be enhanced as described in the GNU Make manual.
|
|
|
|
|
You can force GNU Make to use the simple pipe-based jobserver (perhaps if
|
|
|
|
|
you are integrating with other tools or older versions of GNU Make) by
|
Support implementing the jobserver using named pipes
Using anonymous pipes for jobserver support has some advantages:
for example there is nothing on disk that needs to be cleaned up.
However it has many obscure problems, related to the fact that in
order for it to work we need to ensure these resources are properly
passed through to child processes that want to use the jobserver.
At the same time we don't want to pass the pipe to process which
DON'T know about the jobserver.
Other processes can open file descriptors which we then think are
our jobserver, but aren't. And, we open the pipe file descriptors
in blocking mode which doesn't work for all users.
See issues such as SV 57178, SV 57242, and SV 62397
To avoid these issues, use named pipes (on systems where they are
available) instead of anonoymous pipes. This simplifies many things:
we never need to pass open file descriptors to our children; they
can open the jobserver named pipe. We don't need to worry about
recursive vs. non-recursive children. Users don't have to "pass
through" the resources if they are invoking sub-makes. Each child
can open its own file descriptor and set blocking as needed.
The downside is the named pipe exists on disk and so must be cleaned
up when the "top-level" make instance exits.
In order to allow make to continue to be used in build systems where
older versions of GNU make, or other tools that want to use the
jobserver, but don't understand named pipes, introduce a new option
--jobserver-style that allows the user to choose anonymous pipes.
* NEWS: Announce the change and the --jobserver-style option.
* doc/make.1: Add --jobserver-style documentation.
* doc/make.texi (Special Variables): Add missing items to .FEATURES.
(Options Summary): Add --jobserver-style.
(POSIX Jobserver): Named pipes, changes to --jobserver-auth, and the
--jobserver-style option.
(Windows Jobserver): Document --jobserver-style for Windows.
* configure.ac: Check for mkfifo.
* src/config.h-vms.template: Undefined HAVE_MKFIFO.
* src/config.h.W32.template: Ditto.
* src/main.c: Add jobserver-style as a new command line option.
(main): Add jobserver-fifo to .FEATURES if supported. Pass the style
option to jobserver_setup().
* src/os.h (jobserver_setup): Accept a style string option.
* src/posixos.c (enum js_type): Enumeration of the jobserver style.
(js_type): Which style we are currently using.
(fifo_name): The path to the named pipe (if in use).
(jobserver_setup): If no style is given, or "fifo" is given, set up a
named pipe: get a temporary file and use mkfifo() on it, then open it
for reading and writing. If something fails fall back to anonymous
pipes.
(jobserver_parse_auth): Parse jobserver-auth to determine the style.
If we are using a named pipe, open it. If we're using anonymous pipes
ensure they're valid as before.
(jobserver_get_invalid_auth): Don't invalidate the jobserver when
using named pipes.
(jobserver_clear): Clean up memory used for named pipes.
(jobserver_acquire_all): Unlink the named pipe when done.
* src/w32/w32os.c (jobserver_setup): Check the style argument.
* tests/scripts/features/jobserver: Use --jobserver-style to test
the anonymous pipe behavior, and also test named pipe/semaphore
behavior. Check invalid jobserver-style options.
* tests/scripts/functions/shell: Use --jobserver-style to test the
anonymous pipe behavior, and also test named pipe/semaphore
behavior.
2022-08-02 22:07:27 +00:00
|
|
|
|
adding the '--jobserver-style=pipe' option to the command line of the
|
2022-10-16 19:50:13 +00:00
|
|
|
|
top-level invocation of GNU Make, or via MAKEFLAGS or GNUMAKEFLAGS.
|
Support implementing the jobserver using named pipes
Using anonymous pipes for jobserver support has some advantages:
for example there is nothing on disk that needs to be cleaned up.
However it has many obscure problems, related to the fact that in
order for it to work we need to ensure these resources are properly
passed through to child processes that want to use the jobserver.
At the same time we don't want to pass the pipe to process which
DON'T know about the jobserver.
Other processes can open file descriptors which we then think are
our jobserver, but aren't. And, we open the pipe file descriptors
in blocking mode which doesn't work for all users.
See issues such as SV 57178, SV 57242, and SV 62397
To avoid these issues, use named pipes (on systems where they are
available) instead of anonoymous pipes. This simplifies many things:
we never need to pass open file descriptors to our children; they
can open the jobserver named pipe. We don't need to worry about
recursive vs. non-recursive children. Users don't have to "pass
through" the resources if they are invoking sub-makes. Each child
can open its own file descriptor and set blocking as needed.
The downside is the named pipe exists on disk and so must be cleaned
up when the "top-level" make instance exits.
In order to allow make to continue to be used in build systems where
older versions of GNU make, or other tools that want to use the
jobserver, but don't understand named pipes, introduce a new option
--jobserver-style that allows the user to choose anonymous pipes.
* NEWS: Announce the change and the --jobserver-style option.
* doc/make.1: Add --jobserver-style documentation.
* doc/make.texi (Special Variables): Add missing items to .FEATURES.
(Options Summary): Add --jobserver-style.
(POSIX Jobserver): Named pipes, changes to --jobserver-auth, and the
--jobserver-style option.
(Windows Jobserver): Document --jobserver-style for Windows.
* configure.ac: Check for mkfifo.
* src/config.h-vms.template: Undefined HAVE_MKFIFO.
* src/config.h.W32.template: Ditto.
* src/main.c: Add jobserver-style as a new command line option.
(main): Add jobserver-fifo to .FEATURES if supported. Pass the style
option to jobserver_setup().
* src/os.h (jobserver_setup): Accept a style string option.
* src/posixos.c (enum js_type): Enumeration of the jobserver style.
(js_type): Which style we are currently using.
(fifo_name): The path to the named pipe (if in use).
(jobserver_setup): If no style is given, or "fifo" is given, set up a
named pipe: get a temporary file and use mkfifo() on it, then open it
for reading and writing. If something fails fall back to anonymous
pipes.
(jobserver_parse_auth): Parse jobserver-auth to determine the style.
If we are using a named pipe, open it. If we're using anonymous pipes
ensure they're valid as before.
(jobserver_get_invalid_auth): Don't invalidate the jobserver when
using named pipes.
(jobserver_clear): Clean up memory used for named pipes.
(jobserver_acquire_all): Unlink the named pipe when done.
* src/w32/w32os.c (jobserver_setup): Check the style argument.
* tests/scripts/features/jobserver: Use --jobserver-style to test
the anonymous pipe behavior, and also test named pipe/semaphore
behavior. Check invalid jobserver-style options.
* tests/scripts/functions/shell: Use --jobserver-style to test the
anonymous pipe behavior, and also test named pipe/semaphore
behavior.
2022-08-02 22:07:27 +00:00
|
|
|
|
To detect this change search for 'jobserver-fifo' in the .FEATURES variable.
|
|
|
|
|
|
Rework output sync to lock a temp file on POSIX
Some POSIX systems do not allow locks to be taken on non-files, such
as pipes. This is a problem since very often make is invoked with
its stdout redirected to a pipe. Also, if stdout is redirected to a
file that already has a lock on it for some other reason (perhaps a
shared file such as /dev/null) it can cause a hang.
This means our previous method of locking stdout, although it had some
nice advantages, is not portable enough. Instead, use a temporary
file and take the lock on that. We pass the name of the file to child
make processes. On Windows we continue to use a shared mutex for
output sync.
Remove POSIX emulation functions like fcntl from Windows; instead
follow the lead of the jobserver and create an interface in os.h for
output sync, and move the OS-specific content to posixos.c and
w32os.c.
* NEWS: Add a note.
* src/makeint.h (ALL_SET): Check that all bits are set.
* src/os.h: Add bits for checking the state of stdin/stdout/stderr.
Add prototypes for OS-specific output sync methods.
* src/posixos.c (check_io_state): Determine the status of stdin,
stdout, stderr an return a suite of bits describing them.
(osync_enabled): If the global variable holding the FD of the lock
file (osync_handle) is valid return true.
(osync_setup): Create a temporary file and remember its name in a
global variable (osync_tmpfile), and set osync_handle.
(osync_get_mutex): If output sync is enabled, return the filename
of the lock file prefixed with "fnm:" to denote a filename.
(osync_parse_mutex): If the provided filename has the wrong format
disable output sync. Else open the lock file and set osync_handle.
(osync_clear): Close osync_handle. If we're the parent make, then
also unlink the temporary file.
(osync_acquire): Take a lock on the osync_handle descriptor.
(osync_release): Release the lock on the osync_handle descriptor.
(fd_set_append): Add APPEND mode to a file descriptor.
* src/w32/w32os.c: Perform the same actions as posixos.c, copying
the details from src/w32/compat/posixfcn.c. Use a mutex rather
than locking a temporary file.
* src/output.h: Remove all the OS-specific content.
* src/output.c: Remove all the OS-specific content.
(set_append_mode): Remove and replace with fd_set_append().
(sync_init): Remove and replace with check_io_state().
(acquire_semaphore): Remove and replace with osync_acquire().
(release_semaphore): Remove and replace with osync_release().
(setup_tmpfile): If the IO state is not obtained, get it. If stdout
and/or stderr are valid, set up a tempfile to capture them.
(output_init): Set io_state if not set already, and check it when
deciding whether to close stdout on exit.
* src/main.c (main): If we're syncing, set up the mutex using the
new osync_setup() / osync_parse_mutex() methods.
(prepare_mutex_handl_string): Replace with osync_parse_mutex().
(die): Call osync_clear().
* src/w32/compat/posixfcn.c: Remove implementations of fcntl(),
record_sync_mutex(), create_mutex(), and same_stream().
2022-08-29 00:15:35 +00:00
|
|
|
|
* Some POSIX systems (*BSD) do not allow locks to be taken on pipes, which
|
|
|
|
|
caused the output sync feature to not work properly there. Also multiple
|
|
|
|
|
invocations of make redirecting to the same output file (e.g., /dev/null)
|
|
|
|
|
would cause hangs. Instead of locking stdout (which does have some useful
|
|
|
|
|
performance characteristics, but is not portable) create a temporary file
|
|
|
|
|
and lock that. Windows continues to use a mutex as before.
|
|
|
|
|
|
2022-10-16 19:50:13 +00:00
|
|
|
|
* GNU Make has sometimes chosen unexpected, and sub-optimal, chains of
|
2022-01-20 00:45:12 +00:00
|
|
|
|
implicit rules due to the definition of "ought to exist" in the implicit
|
|
|
|
|
rule search algorithm, which considered any prerequisite mentioned in the
|
|
|
|
|
makefile as "ought to exist". This algorithm has been modified to prefer
|
|
|
|
|
prerequisites mentioned explicitly in the target being built and only if
|
2022-10-16 19:50:13 +00:00
|
|
|
|
that results in no matching rule, will GNU Make consider prerequisites
|
2022-01-20 00:45:12 +00:00
|
|
|
|
mentioned in other targets as "ought to exist".
|
|
|
|
|
Implementation provided by Dmitry Goncharov <dgoncharov@users.sf.net>
|
|
|
|
|
|
2022-10-16 19:50:13 +00:00
|
|
|
|
* GNU Make was performing secondary expansion of all targets, even targets
|
2022-07-24 22:16:50 +00:00
|
|
|
|
which didn't need to be considered during the build. In this release
|
|
|
|
|
only targets which are considered will be secondarily expanded.
|
|
|
|
|
Implementation provided by Dmitry Goncharov <dgoncharov@users.sf.net>
|
|
|
|
|
|
2021-09-05 21:11:44 +00:00
|
|
|
|
* If the MAKEFLAGS variable is modified in a makefile, it will be re-parsed
|
|
|
|
|
immediately rather than after all makefiles have been read. Note that
|
|
|
|
|
although all options are parsed immediately, some special effects won't
|
|
|
|
|
appear until after all makefiles are read.
|
|
|
|
|
|
2021-05-30 22:47:50 +00:00
|
|
|
|
* The -I option accepts an argument "-" (e.g., "-I-") which means "reset the
|
|
|
|
|
list of search directories to empty". Among other things this can be used
|
2022-10-16 19:50:13 +00:00
|
|
|
|
to prevent GNU Make from searching in its default list of directories.
|
2021-05-30 22:47:50 +00:00
|
|
|
|
|
2020-12-05 21:25:12 +00:00
|
|
|
|
* New debug option "print" will show the recipe to be run, even when silent
|
2021-05-30 19:52:32 +00:00
|
|
|
|
mode is set, and new debug option "why" will show why a target is rebuilt
|
|
|
|
|
(which prerequisites caused the target to be considered out of date).
|
|
|
|
|
Implementation provided by David Boyce <David.S.Boyce@gmail.com>
|
2020-12-05 21:25:12 +00:00
|
|
|
|
|
|
|
|
|
* The existing --trace option is made equivalent to --debug=print,why
|
|
|
|
|
|
2020-11-28 17:30:08 +00:00
|
|
|
|
* Target-specific variables can now be marked "unexport".
|
|
|
|
|
|
|
|
|
|
* Exporting / unexporting target-specific variables is handled correctly, so
|
|
|
|
|
that the attribute of the most specific variable setting is used.
|
|
|
|
|
|
2020-11-27 16:37:29 +00:00
|
|
|
|
* Special targets like .POSIX are detected upon definition, ensuring that any
|
|
|
|
|
change in behavior takes effect immediately, before the next line is parsed.
|
|
|
|
|
|
2022-10-23 02:40:57 +00:00
|
|
|
|
* When the pipe-based jobserver is enabled and GNU Make decides it is invoking
|
|
|
|
|
a non-make sub-process and closes the jobserver pipes, it will now add a new
|
|
|
|
|
option to the MAKEFLAGS environment variable that disables the jobserver.
|
2022-07-24 18:14:32 +00:00
|
|
|
|
This prevents sub-processes that invoke make from accidentally using other
|
|
|
|
|
open file descriptors as jobserver pipes. For more information see
|
|
|
|
|
https://savannah.gnu.org/bugs/?57242 and https://savannah.gnu.org/bugs/?62397
|
|
|
|
|
|
2020-11-27 22:07:53 +00:00
|
|
|
|
* A long-standing issue with the directory cache has been resolved: changes
|
|
|
|
|
made as a side-effect of some other target's recipe are now noticed as
|
|
|
|
|
expected.
|
|
|
|
|
|
2020-03-29 21:50:34 +00:00
|
|
|
|
* GNU Make can now be built for MS-Windows using the Tiny C tcc compiler.
|
2021-05-30 19:52:32 +00:00
|
|
|
|
Port provided by Christian Jullien <eligis@orange.fr>
|
2020-02-29 09:16:19 +00:00
|
|
|
|
|
2016-06-25 00:49:32 +00:00
|
|
|
|
|
2020-01-18 00:01:49 +00:00
|
|
|
|
Version 4.3 (19 Jan 2020)
|
2016-06-25 00:49:32 +00:00
|
|
|
|
|
|
|
|
|
A complete list of bugs fixed in this version is available here:
|
|
|
|
|
|
2020-01-18 00:01:49 +00:00
|
|
|
|
https://sv.gnu.org/bugs/index.php?group=make&report_id=111&fix_release_id=108&set=custom
|
2016-06-25 00:49:32 +00:00
|
|
|
|
|
2016-12-22 23:47:26 +00:00
|
|
|
|
* WARNING: Backward-incompatibility!
|
|
|
|
|
Number signs (#) appearing inside a macro reference or function invocation
|
|
|
|
|
no longer introduce comments and should not be escaped with backslashes:
|
|
|
|
|
thus a call such as:
|
|
|
|
|
foo := $(shell echo '#')
|
|
|
|
|
is legal. Previously the number sign needed to be escaped, for example:
|
|
|
|
|
foo := $(shell echo '\#')
|
|
|
|
|
Now this latter will resolve to "\#". If you want to write makefiles
|
|
|
|
|
portable to both versions, assign the number sign to a variable:
|
2018-07-01 16:28:25 +00:00
|
|
|
|
H := \#
|
|
|
|
|
foo := $(shell echo '$H')
|
2016-12-22 23:47:26 +00:00
|
|
|
|
This was claimed to be fixed in 3.81, but wasn't, for some reason.
|
|
|
|
|
To detect this change search for 'nocomment' in the .FEATURES variable.
|
|
|
|
|
|
2017-05-28 00:07:30 +00:00
|
|
|
|
* WARNING: Backward-incompatibility!
|
|
|
|
|
Previously appending using '+=' to an empty variable would result in a value
|
|
|
|
|
starting with a space. Now the initial space is only added if the variable
|
|
|
|
|
already contains some value. Similarly, appending an empty string does not
|
|
|
|
|
add a trailing space.
|
|
|
|
|
|
2020-03-29 21:50:34 +00:00
|
|
|
|
* WARNING: Backward-incompatibility!
|
|
|
|
|
Previously using the .SILENT pseudo-target in a makefile would force all
|
|
|
|
|
sub-makes to be invoked with the '-s' option, effectively making all
|
2020-05-14 05:00:28 +00:00
|
|
|
|
sub-makes silent as well. In this release .SILENT only affects the current
|
|
|
|
|
invocation of make. A side-effect of this is that .SILENT will no longer
|
|
|
|
|
enable the --no-print-directory option, which using -s will do.
|
2020-03-29 21:50:34 +00:00
|
|
|
|
|
2020-01-16 18:49:07 +00:00
|
|
|
|
* NOTE: Deprecated behavior.
|
|
|
|
|
Contrary to the documentation, suffix rules with prerequisites are being
|
|
|
|
|
treated BOTH as simple targets AND as pattern rules. Further, the
|
|
|
|
|
prerequisites are ignored by the pattern rules. POSIX specifies that in
|
|
|
|
|
order to be a suffix rule there can be no prerequisites defined. In this
|
|
|
|
|
release if POSIX mode is enabled then rules with prerequisites cannot be
|
|
|
|
|
suffix rules. If POSIX mode is not enabled then the previous behavior is
|
|
|
|
|
preserved (a pattern rule with no extra prerequisites is created) AND a
|
|
|
|
|
warning about this behavior is generated:
|
|
|
|
|
warning: ignoring prerequisites on suffix rule definition
|
|
|
|
|
The POSIX behavior will be adopted as the only behavior in a future release
|
2023-01-01 21:25:39 +00:00
|
|
|
|
of GNU Make so please resolve any warnings.
|
2018-09-09 19:30:07 +00:00
|
|
|
|
|
2019-05-11 22:35:03 +00:00
|
|
|
|
* New feature: Grouped explicit targets
|
|
|
|
|
Pattern rules have always had the ability to generate multiple targets with
|
|
|
|
|
a single invocation of the recipe. It's now possible to declare that an
|
|
|
|
|
explicit rule generates multiple targets with a single invocation. To use
|
|
|
|
|
this, replace the ":" token with "&:" in the rule. To detect this feature
|
|
|
|
|
search for 'grouped-target' in the .FEATURES special variable.
|
|
|
|
|
Implementation contributed by Kaz Kylheku <kaz@kylheku.com>
|
|
|
|
|
|
2020-01-02 10:08:06 +00:00
|
|
|
|
* New feature: .EXTRA_PREREQS variable
|
|
|
|
|
Words in this variable are considered prerequisites of targets but they are
|
|
|
|
|
not added to any of the automatic variable values when expanding the
|
|
|
|
|
recipe. This variable can either be global (applies to all targets) or
|
|
|
|
|
a target-specific variable. To detect this feature search for 'extra-prereqs'
|
|
|
|
|
in the .FEATURES special variable.
|
2020-01-04 18:10:53 +00:00
|
|
|
|
Implementation contributed by Christof Warlich <cwarlich@gmx.de>
|
2020-01-02 10:08:06 +00:00
|
|
|
|
|
2018-08-04 23:20:58 +00:00
|
|
|
|
* Makefiles can now specify the '-j' option in their MAKEFLAGS variable and
|
|
|
|
|
this will cause make to enable that parallelism mode.
|
|
|
|
|
|
2023-01-01 21:25:39 +00:00
|
|
|
|
* GNU Make will now use posix_spawn() on systems where it is available.
|
2019-09-02 15:08:15 +00:00
|
|
|
|
If you prefer to use fork/exec even on systems where posix_spawn() is
|
2020-01-04 18:10:53 +00:00
|
|
|
|
present, you can use the --disable-posix-spawn option to configure.
|
|
|
|
|
Implementation contributed by Aron Barath <baratharon@caesar.elte.hu>
|
2018-08-04 23:20:58 +00:00
|
|
|
|
|
|
|
|
|
* Error messages printed when invoking non-existent commands have been cleaned
|
|
|
|
|
up and made consistent.
|
|
|
|
|
|
2016-11-12 09:03:14 +00:00
|
|
|
|
* The previous limit of 63 jobs under -jN on MS-Windows is now
|
|
|
|
|
increased to 4095. That limit includes the subprocess started by
|
|
|
|
|
the $(shell) function.
|
|
|
|
|
|
2016-12-28 05:23:55 +00:00
|
|
|
|
* A new option --no-silent has been added, that cancels the effect of the
|
|
|
|
|
-s/--silent/--quiet flag.
|
|
|
|
|
|
2016-12-28 05:41:38 +00:00
|
|
|
|
* A new option -E has been added as a short alias for --eval.
|
|
|
|
|
|
2023-01-01 21:25:39 +00:00
|
|
|
|
* All wildcard expansion within GNU Make, including $(wildcard ...), will sort
|
2018-08-04 23:20:58 +00:00
|
|
|
|
the results. See https://savannah.gnu.org/bugs/index.php?52076
|
|
|
|
|
|
|
|
|
|
* Interoperate with newer GNU libc and musl C runtime libraries.
|
|
|
|
|
|
|
|
|
|
* Performance improvements provided by Paolo Bonzini <pbonzini@redhat.com>
|
|
|
|
|
|
2023-01-01 21:25:39 +00:00
|
|
|
|
GNU Make Developer News
|
2018-07-01 16:28:25 +00:00
|
|
|
|
|
|
|
|
|
* Import the GNU standard bootstrap script to replace the hand-rolled
|
2023-01-01 21:25:39 +00:00
|
|
|
|
"make update" method for building code from a GNU Make Git repository.
|
2018-07-01 16:28:25 +00:00
|
|
|
|
|
|
|
|
|
* Rework the source distribution to move source files into the src/*
|
|
|
|
|
subdirectory. This aligns with modern best practices in GNU.
|
|
|
|
|
|
2018-08-04 23:20:58 +00:00
|
|
|
|
* Replace local portability code with Gnulib content. Unfortunately due to a
|
|
|
|
|
problem with Gnulib support for getloadavg, this forces a requirement on
|
|
|
|
|
Automake 1.16 or above in order to build from Git. See README.git.
|
|
|
|
|
|
2016-06-06 12:32:45 +00:00
|
|
|
|
|
|
|
|
|
Version 4.2.1 (10 Jun 2016)
|
|
|
|
|
|
|
|
|
|
A complete list of bugs fixed in this version is available here:
|
2016-06-25 00:49:32 +00:00
|
|
|
|
|
2020-01-18 00:01:49 +00:00
|
|
|
|
https://sv.gnu.org/bugs/index.php?group=make&report_id=111&fix_release_id=107&set=custom
|
2016-06-06 12:32:45 +00:00
|
|
|
|
|
|
|
|
|
This release is a bug-fix release.
|
|
|
|
|
|
2014-10-09 06:06:53 +00:00
|
|
|
|
|
2016-05-21 19:23:54 +00:00
|
|
|
|
Version 4.2 (22 May 2016)
|
2014-10-09 06:06:53 +00:00
|
|
|
|
|
|
|
|
|
A complete list of bugs fixed in this version is available here:
|
|
|
|
|
|
2020-01-18 00:01:49 +00:00
|
|
|
|
https://sv.gnu.org/bugs/index.php?group=make&report_id=111&fix_release_id=106&set=custom
|
2014-10-09 06:06:53 +00:00
|
|
|
|
|
2015-07-13 01:03:24 +00:00
|
|
|
|
* New variable: $(.SHELLSTATUS) is set to the exit status of the last != or
|
|
|
|
|
$(shell ...) function invoked in this instance of make. This will be "0" if
|
|
|
|
|
successful or not "0" if not successful. The variable value is unset if no
|
|
|
|
|
!= or $(shell ...) function has been invoked.
|
|
|
|
|
|
2016-03-19 21:26:08 +00:00
|
|
|
|
* The $(file ...) function can now read from a file with $(file <FILE).
|
|
|
|
|
The function is expanded to the contents of the file. The contents are
|
|
|
|
|
expanded verbatim except that the final newline, if any, is stripped.
|
|
|
|
|
|
2023-01-01 21:25:39 +00:00
|
|
|
|
* The makefile line numbers shown by GNU Make now point directly to the
|
2016-04-10 21:12:48 +00:00
|
|
|
|
specific line in the recipe where the failure or warning occurred.
|
|
|
|
|
Sample changes suggested by Brian Vandenberg <phantall@gmail.com>
|
|
|
|
|
|
2023-01-01 21:25:39 +00:00
|
|
|
|
* The interface to GNU Make's "jobserver" is stable as documented in the
|
2016-04-02 20:29:48 +00:00
|
|
|
|
manual, for tools which may want to access it.
|
|
|
|
|
|
|
|
|
|
WARNING: Backward-incompatibility! The internal-only command line option
|
|
|
|
|
--jobserver-fds has been renamed for publishing, to --jobserver-auth.
|
|
|
|
|
|
2016-04-04 05:23:04 +00:00
|
|
|
|
* The amount of parallelism can be determined by querying MAKEFLAGS, even when
|
|
|
|
|
the job server is enabled (previously MAKEFLAGS would always contain only
|
2016-04-10 21:12:48 +00:00
|
|
|
|
"-j", with no number, when job server was enabled).
|
2016-04-04 05:23:04 +00:00
|
|
|
|
|
2014-10-15 12:19:42 +00:00
|
|
|
|
* VMS-specific changes:
|
|
|
|
|
|
|
|
|
|
* Perl test harness now works.
|
|
|
|
|
|
|
|
|
|
* Full support for converting Unix exit status codes to VMS exit status
|
|
|
|
|
codes. BACKWARD INCOMPATIBILITY Notice: On a child failure the VMS exit
|
|
|
|
|
code is now the encoded Unix exit status that Make usually generates, not
|
|
|
|
|
the VMS exit status of the child.
|
|
|
|
|
|
2013-10-13 20:46:41 +00:00
|
|
|
|
|
2014-10-05 16:18:08 +00:00
|
|
|
|
Version 4.1 (05 Oct 2014)
|
2013-10-13 20:46:41 +00:00
|
|
|
|
|
|
|
|
|
A complete list of bugs fixed in this version is available here:
|
|
|
|
|
|
2020-01-18 00:01:49 +00:00
|
|
|
|
https://sv.gnu.org/bugs/index.php?group=make&report_id=111&fix_release_id=105&set=custom
|
2013-10-13 20:46:41 +00:00
|
|
|
|
|
2014-09-30 12:33:21 +00:00
|
|
|
|
* New variables: $(MAKE_TERMOUT) and $(MAKE_TERMERR) are set to non-empty
|
|
|
|
|
values if stdout or stderr, respectively, are believed to be writing to a
|
|
|
|
|
terminal. These variables are exported by default.
|
2014-09-14 05:03:19 +00:00
|
|
|
|
|
2014-04-08 22:25:27 +00:00
|
|
|
|
* Allow a no-text-argument form of the $(file ...) function. Without a text
|
|
|
|
|
argument nothing is written to the file: it is simply opened in the
|
|
|
|
|
requested mode, then closed again.
|
|
|
|
|
|
2013-10-20 16:49:01 +00:00
|
|
|
|
* Change the fatal error for mixed explicit and implicit rules, that was
|
2023-01-01 21:25:39 +00:00
|
|
|
|
introduced in GNU Make 3.82, to a non-fatal error. However, this syntax is
|
2013-10-20 16:49:01 +00:00
|
|
|
|
still deprecated and may return to being illegal in a future version of GNU
|
|
|
|
|
make. Makefiles that rely on this syntax should be fixed.
|
|
|
|
|
See https://savannah.gnu.org/bugs/?33034
|
|
|
|
|
|
2014-10-15 12:19:42 +00:00
|
|
|
|
* VMS-specific changes:
|
|
|
|
|
|
|
|
|
|
* Support for library files added, including support for using the GNV ar
|
|
|
|
|
utility.
|
|
|
|
|
|
|
|
|
|
* Partial support for properly encoding Unix exit status codes into VMS exit
|
|
|
|
|
status codes.
|
|
|
|
|
|
|
|
|
|
WARNING: Backward-incompatibility! These are different exit status codes
|
|
|
|
|
than Make exited with in the past.
|
|
|
|
|
|
|
|
|
|
* Macros to hold the current make command are set up to translate the
|
|
|
|
|
argv[0] string to a VMS format path name and prefix it with "MCR " so that
|
|
|
|
|
the macro has a space in it.
|
|
|
|
|
|
|
|
|
|
WARNING: Backward-incompatibility! This may break complex makefiles that
|
|
|
|
|
do processing on those macros. This is unlikely because so much in that
|
|
|
|
|
area was not and is still not currently working on VMS, it is unlikely to
|
|
|
|
|
find such a complex makefile, so this is more likely to impact
|
|
|
|
|
construction of a future makefile.
|
|
|
|
|
|
|
|
|
|
* A command file is always used to run the commands for a recipe.
|
|
|
|
|
|
|
|
|
|
WARNING: Backward-incompatibility! Running the make self tests has
|
|
|
|
|
exposed that there are significant differences in behavior when running
|
|
|
|
|
with the command file mode. It is unknown if this will be noticed by most
|
|
|
|
|
existing VMS makefiles.
|
2010-08-29 23:05:26 +00:00
|
|
|
|
|
2013-10-09 05:54:24 +00:00
|
|
|
|
Version 4.0 (09 Oct 2013)
|
2010-08-29 23:05:26 +00:00
|
|
|
|
|
|
|
|
|
A complete list of bugs fixed in this version is available here:
|
|
|
|
|
|
2020-01-18 00:01:49 +00:00
|
|
|
|
https://sv.gnu.org/bugs/index.php?group=make&report_id=111&fix_release_id=101&set=custom
|
2010-08-29 23:05:26 +00:00
|
|
|
|
|
2010-11-06 21:56:23 +00:00
|
|
|
|
* WARNING: Backward-incompatibility!
|
2012-03-03 18:45:08 +00:00
|
|
|
|
If .POSIX is specified, then make adheres to the POSIX backslash/newline
|
|
|
|
|
handling requirements, which introduces the following changes to the
|
|
|
|
|
standard backslash/newline handling in non-recipe lines:
|
|
|
|
|
* Any trailing space before the backslash is preserved
|
|
|
|
|
* Each backslash/newline (plus subsequent whitespace) is converted to a
|
|
|
|
|
single space
|
2010-11-06 21:56:23 +00:00
|
|
|
|
|
2013-09-29 17:16:21 +00:00
|
|
|
|
* New feature: GNU Guile integration
|
2023-01-01 21:25:39 +00:00
|
|
|
|
This version of GNU Make can be compiled with GNU Guile integration.
|
2013-09-29 17:16:21 +00:00
|
|
|
|
GNU Guile serves as an embedded extension language for make.
|
|
|
|
|
See the "Guile Function" section in the GNU Make manual for details.
|
|
|
|
|
Currently GNU Guile 1.8 and 2.0+ are supported. In Guile 1.8 there is no
|
|
|
|
|
support for internationalized character sets. In Guile 2.0+, scripts can be
|
|
|
|
|
encoded in UTF-8.
|
|
|
|
|
|
2013-04-16 04:35:48 +00:00
|
|
|
|
* New command line option: --output-sync (-O) enables grouping of output by
|
|
|
|
|
target or by recursive make. This is useful during parallel builds to avoid
|
2013-04-28 05:19:19 +00:00
|
|
|
|
mixing output from different jobs together giving hard-to-understand
|
|
|
|
|
results. Original implementation by David Boyce <dsb@boyski.com>.
|
|
|
|
|
Reworked and enhanced by Frank Heckenbach <f.heckenbach@fh-soft.de>.
|
|
|
|
|
Windows support by Eli Zaretskii <eliz@gnu.org>.
|
2013-04-16 04:35:48 +00:00
|
|
|
|
|
2013-05-13 06:48:04 +00:00
|
|
|
|
* New command line option: --trace enables tracing of targets. When enabled
|
|
|
|
|
the recipe to be invoked is printed even if it would otherwise be suppressed
|
|
|
|
|
by .SILENT or a "@" prefix character. Also before each recipe is run the
|
|
|
|
|
makefile name and linenumber where it was defined are shown as well as the
|
2013-09-15 01:01:10 +00:00
|
|
|
|
prerequisites that caused the target to be considered out of date.
|
|
|
|
|
|
|
|
|
|
* New command line option argument: --debug now accepts a "n" (none) flag
|
|
|
|
|
which disables all debugging settings that are currently enabled.
|
2013-05-13 06:48:04 +00:00
|
|
|
|
|
2011-11-14 00:42:49 +00:00
|
|
|
|
* New feature: The "job server" capability is now supported on Windows.
|
|
|
|
|
Implementation contributed by Troy Runkel <Troy.Runkel@mathworks.com>
|
|
|
|
|
|
2013-04-28 05:19:19 +00:00
|
|
|
|
* New feature: The .ONESHELL capability is now supported on Windows. Support
|
|
|
|
|
added by Eli Zaretskii <eliz@gnu.org>.
|
|
|
|
|
|
2011-04-18 01:25:20 +00:00
|
|
|
|
* New feature: "!=" shell assignment operator as an alternative to the
|
2011-11-14 00:42:49 +00:00
|
|
|
|
$(shell ...) function. Implemented for compatibility with BSD makefiles.
|
2013-09-29 17:16:21 +00:00
|
|
|
|
Note there are subtle differences between "!=" and $(shell ...). See the
|
2023-01-01 21:25:39 +00:00
|
|
|
|
description in the GNU Make manual.
|
2011-04-18 01:25:20 +00:00
|
|
|
|
WARNING: Backward-incompatibility!
|
|
|
|
|
Variables ending in "!" previously defined as "variable!= value" will now be
|
|
|
|
|
interpreted as shell assignment. Change your assignment to add whitespace
|
|
|
|
|
between the "!" and "=": "variable! = value"
|
|
|
|
|
|
2012-01-30 00:21:57 +00:00
|
|
|
|
* New feature: "::=" simple assignment operator as defined by POSIX in 2012.
|
2023-01-01 21:25:39 +00:00
|
|
|
|
This operator has identical functionality to ":=" in GNU Make, but will be
|
2012-01-30 00:21:57 +00:00
|
|
|
|
portable to any implementation of make conforming to a sufficiently new
|
2022-10-18 18:36:40 +00:00
|
|
|
|
version of POSIX (see https://austingroupbugs.net/view.php?id=330). It is
|
2012-01-30 00:21:57 +00:00
|
|
|
|
not necessary to define the .POSIX target to access this operator.
|
|
|
|
|
|
2012-10-29 07:05:21 +00:00
|
|
|
|
* New feature: Loadable objects
|
2023-01-01 21:25:39 +00:00
|
|
|
|
This version of GNU Make contains a "technology preview": the ability to
|
2012-10-29 07:05:21 +00:00
|
|
|
|
load dynamic objects into the make runtime. These objects can be created by
|
|
|
|
|
the user and can add extended functionality, usable by makefiles.
|
|
|
|
|
|
2012-01-29 18:12:22 +00:00
|
|
|
|
* New function: $(file ...) writes to a file.
|
2010-08-29 23:05:26 +00:00
|
|
|
|
|
2013-05-13 06:48:04 +00:00
|
|
|
|
* New variable: $(GNUMAKEFLAGS) will be parsed for make flags, just like
|
|
|
|
|
MAKEFLAGS is. It can be set in the environment or the makefile, containing
|
2023-01-01 21:25:39 +00:00
|
|
|
|
GNU Make-specific flags to allow your makefile to be portable to other
|
|
|
|
|
versions of make. Once this variable is parsed, GNU Make will set it to the
|
2013-09-29 17:15:00 +00:00
|
|
|
|
empty string so that flags will not be duplicated on recursion.
|
2013-05-13 06:48:04 +00:00
|
|
|
|
|
2013-05-27 17:52:08 +00:00
|
|
|
|
* New variable: `MAKE_HOST' gives the name of the host architecture
|
|
|
|
|
make was compiled for. This is the same value you see after 'Built for'
|
|
|
|
|
when running 'make --version'.
|
|
|
|
|
|
2013-05-22 06:51:45 +00:00
|
|
|
|
* Behavior of MAKEFLAGS and MFLAGS is more rigorously defined. All simple
|
|
|
|
|
flags are grouped together in the first word of MAKEFLAGS. No options that
|
2013-09-29 17:15:00 +00:00
|
|
|
|
accept arguments appear in the first word. If no simple flags are present
|
|
|
|
|
MAKEFLAGS begins with a space. Flags with both short and long versions
|
|
|
|
|
always use the short versions in MAKEFLAGS. Flags are listed in
|
|
|
|
|
alphabetical order using ASCII ordering. MFLAGS never begins with "- ".
|
2013-05-22 06:51:45 +00:00
|
|
|
|
|
|
|
|
|
* Setting the -r and -R options in MAKEFLAGS inside a makefile now works as
|
|
|
|
|
expected, removing all built-in rules and variables, respectively.
|
|
|
|
|
|
2013-09-12 08:07:52 +00:00
|
|
|
|
* If a recipe fails, the makefile name and linenumber of the recipe are shown.
|
2010-08-29 23:05:26 +00:00
|
|
|
|
|
2010-11-06 21:56:23 +00:00
|
|
|
|
* A .RECIPEPREFIX setting is remembered per-recipe and variables expanded
|
|
|
|
|
in that recipe also use that recipe prefix setting.
|
|
|
|
|
|
|
|
|
|
* In -p output, .RECIPEPREFIX settings are shown and all target-specific
|
|
|
|
|
variables are output as if in a makefile, instead of as comments.
|
|
|
|
|
|
2013-05-01 15:41:14 +00:00
|
|
|
|
* On MS-Windows, recipes that use ".." quoting will no longer force
|
|
|
|
|
invocation of commands via temporary batch files and stock Windows
|
|
|
|
|
shells, they will be short-circuited and invoked directly. (In
|
|
|
|
|
other words, " is no longer a special character for stock Windows
|
|
|
|
|
shells.) This avoids hitting shell limits for command length when
|
|
|
|
|
quotes are used, but nothing else in the command requires the shell.
|
|
|
|
|
This change could potentially mean some minor incompatibilities in
|
|
|
|
|
behavior when the recipe uses quoted string on shell command lines.
|
|
|
|
|
|
2006-04-07 01:43:44 +00:00
|
|
|
|
|
2013-05-26 17:53:21 +00:00
|
|
|
|
Version 3.82 (28 Jul 2010)
|
2010-07-28 05:39:50 +00:00
|
|
|
|
|
|
|
|
|
A complete list of bugs fixed in this version is available here:
|
|
|
|
|
|
2020-01-18 00:01:49 +00:00
|
|
|
|
https://sv.gnu.org/bugs/index.php?group=make&report_id=111&fix_release_id=104&set=custom
|
2006-04-07 01:43:44 +00:00
|
|
|
|
|
2023-01-01 21:25:39 +00:00
|
|
|
|
* Compiling GNU Make now requires a conforming ISO C 1989 compiler and
|
2006-04-07 01:43:44 +00:00
|
|
|
|
standard runtime library.
|
|
|
|
|
|
2010-07-06 06:37:42 +00:00
|
|
|
|
* WARNING: Backward-incompatibility!
|
|
|
|
|
The POSIX standard for make was changed in the 2008 version in a
|
|
|
|
|
fundamentally incompatible way: make is required to invoke the shell as if
|
|
|
|
|
the '-e' flag were provided. Because this would break many makefiles that
|
|
|
|
|
have been written to conform to the original text of the standard, the
|
2023-01-01 21:25:39 +00:00
|
|
|
|
default behavior of GNU Make remains to invoke the shell with simply '-c'.
|
2010-07-06 06:37:42 +00:00
|
|
|
|
However, any makefile specifying the .POSIX special target will follow the
|
2010-07-28 05:39:50 +00:00
|
|
|
|
new POSIX standard and pass '-e' to the shell. See also .SHELLFLAGS
|
|
|
|
|
below.
|
2010-07-06 06:37:42 +00:00
|
|
|
|
|
2009-10-12 22:24:54 +00:00
|
|
|
|
* WARNING: Backward-incompatibility!
|
|
|
|
|
The '$?' variable now contains all prerequisites that caused the target to
|
|
|
|
|
be considered out of date, even if they do not exist (previously only
|
|
|
|
|
existing targets were provided in $?).
|
2009-05-26 01:31:40 +00:00
|
|
|
|
|
2010-08-14 02:50:14 +00:00
|
|
|
|
* WARNING: Backward-incompatibility!
|
|
|
|
|
Wildcards were not documented as returning sorted values, but the results
|
|
|
|
|
have been sorted up until this release.. If your makefiles require sorted
|
|
|
|
|
results from wildcard expansions, use the $(sort ...) function to request
|
|
|
|
|
it explicitly.
|
|
|
|
|
|
2009-05-26 01:31:40 +00:00
|
|
|
|
* WARNING: Backward-incompatibility!
|
2009-10-25 18:34:43 +00:00
|
|
|
|
As a result of parser enhancements, three backward-compatibility issues
|
|
|
|
|
exist: first, a prerequisite containing an "=" cannot be escaped with a
|
2010-07-28 05:39:50 +00:00
|
|
|
|
backslash any longer. You must create a variable containing an "=" and
|
|
|
|
|
use that variable in the prerequisite. Second, variable names can no
|
|
|
|
|
longer contain whitespace, unless you put the whitespace in a variable and
|
|
|
|
|
use the variable. Third, in previous versions of make it was sometimes
|
|
|
|
|
not flagged as an error for explicit and pattern targets to appear in the
|
|
|
|
|
same rule. Now this is always reported as an error.
|
2009-05-26 01:31:40 +00:00
|
|
|
|
|
2009-10-12 22:24:54 +00:00
|
|
|
|
* WARNING: Backward-incompatibility!
|
2009-10-25 00:46:52 +00:00
|
|
|
|
The pattern-specific variables and pattern rules are now applied in the
|
2009-10-12 22:24:54 +00:00
|
|
|
|
shortest stem first order instead of the definition order (variables
|
|
|
|
|
and rules with the same stem length are still applied in the definition
|
|
|
|
|
order). This produces the usually-desired behavior where more specific
|
|
|
|
|
patterns are preferred. To detect this feature search for 'shortest-stem'
|
2009-10-25 00:46:52 +00:00
|
|
|
|
in the .FEATURES special variable.
|
|
|
|
|
|
2009-11-12 16:42:36 +00:00
|
|
|
|
* WARNING: Backward-incompatibility!
|
|
|
|
|
The library search behavior has changed to be compatible with the standard
|
2010-07-28 05:39:50 +00:00
|
|
|
|
linker behavior. Prior to this version for prerequisites specified using
|
|
|
|
|
the -lfoo syntax make first searched for libfoo.so in the current
|
|
|
|
|
directory, vpath directories, and system directories. If that didn't yield
|
|
|
|
|
a match, make then searched for libfoo.a in these directories. Starting
|
|
|
|
|
with this version make searches first for libfoo.so and then for libfoo.a
|
|
|
|
|
in each of these directories in order.
|
2009-11-12 16:42:36 +00:00
|
|
|
|
|
2009-10-25 00:46:52 +00:00
|
|
|
|
* New command line option: --eval=STRING causes STRING to be evaluated as
|
2010-07-28 05:39:50 +00:00
|
|
|
|
makefile syntax (akin to using the $(eval ...) function). The evaluation
|
|
|
|
|
is performed after all default rules and variables are defined, but before
|
|
|
|
|
any makefiles are read.
|
2009-10-12 22:24:54 +00:00
|
|
|
|
|
2007-11-04 21:54:00 +00:00
|
|
|
|
* New special variable: .RECIPEPREFIX allows you to reset the recipe
|
2010-07-28 05:39:50 +00:00
|
|
|
|
introduction character from the default (TAB) to something else. The
|
|
|
|
|
first character of this variable value is the new recipe introduction
|
|
|
|
|
character. If the variable is set to the empty string, TAB is used again.
|
|
|
|
|
It can be set and reset at will; recipes will use the value active when
|
|
|
|
|
they were first parsed. To detect this feature check the value of
|
|
|
|
|
$(.RECIPEPREFIX).
|
|
|
|
|
|
|
|
|
|
* New special variable: .SHELLFLAGS allows you to change the options passed
|
|
|
|
|
to the shell when it invokes recipes. By default the value will be "-c"
|
|
|
|
|
(or "-ec" if .POSIX is set).
|
|
|
|
|
|
|
|
|
|
* New special target: .ONESHELL instructs make to invoke a single instance
|
|
|
|
|
of the shell and provide it with the entire recipe, regardless of how many
|
2010-07-12 05:23:19 +00:00
|
|
|
|
lines it contains. As a special feature to allow more straightforward
|
2010-07-28 05:39:50 +00:00
|
|
|
|
conversion of makefiles to use .ONESHELL, any recipe line control
|
|
|
|
|
characters ('@', '+', or '-') will be removed from the second and
|
|
|
|
|
subsequent recipe lines. This happens _only_ if the SHELL value is deemed
|
|
|
|
|
to be a standard POSIX-style shell. If not, then no interior line control
|
|
|
|
|
characters are removed (as they may be part of the scripting language used
|
|
|
|
|
with the alternate SHELL).
|
2010-07-12 05:23:19 +00:00
|
|
|
|
|
2009-05-26 01:31:40 +00:00
|
|
|
|
* New variable modifier 'private': prefixing a variable assignment with the
|
|
|
|
|
modifier 'private' suppresses inheritance of that variable by
|
|
|
|
|
prerequisites. This is most useful for target- and pattern-specific
|
|
|
|
|
variables.
|
2007-11-04 21:54:00 +00:00
|
|
|
|
|
2010-07-28 05:39:50 +00:00
|
|
|
|
* New make directive: 'undefine' allows you to undefine a variable so that
|
|
|
|
|
it appears as if it was never set. Both $(flavor) and $(origin) functions
|
|
|
|
|
will return 'undefined' for such a variable. To detect this feature search
|
|
|
|
|
for 'undefine' in the .FEATURES special variable.
|
2009-10-25 00:46:52 +00:00
|
|
|
|
|
2009-10-12 22:24:54 +00:00
|
|
|
|
* The parser for variable assignments has been enhanced to allow multiple
|
|
|
|
|
modifiers ('export', 'override', 'private') on the same line as variables,
|
|
|
|
|
including define/endef variables, and in any order. Also, it is possible
|
|
|
|
|
to create variables and targets named as these modifiers.
|
2009-09-28 12:31:55 +00:00
|
|
|
|
|
2010-07-28 05:39:50 +00:00
|
|
|
|
* The 'define' make directive now allows a variable assignment operator
|
|
|
|
|
after the variable name, to allow for simple, conditional, or appending
|
|
|
|
|
multi-line variable assignment.
|
2010-07-06 06:37:42 +00:00
|
|
|
|
|
2014-10-15 12:19:42 +00:00
|
|
|
|
* VMS-specific changes:
|
|
|
|
|
|
|
|
|
|
* Michael Gehre (at VISTEC-SEMI dot COM) supplied a fix for a problem with
|
|
|
|
|
timestamps of object modules in OLBs. The timestamps were not correctly
|
|
|
|
|
adjusted to GMT based time, if the local VMS time was using a daylight
|
|
|
|
|
saving algorithm and if daylight saving was switched off.
|
|
|
|
|
|
|
|
|
|
* John Eisenbraun (at HP dot COM) supplied fixes and and an enhancement to
|
|
|
|
|
append output redirection in action lines.
|
|
|
|
|
|
|
|
|
|
* Rework of ctrl+c and ctrl+y handling.
|
|
|
|
|
|
|
|
|
|
* Fix a problem with cached strings, which showed on case-insensitive file
|
|
|
|
|
systems.
|
|
|
|
|
|
|
|
|
|
* Build fixes for const-ified code in VMS specific sources.
|
|
|
|
|
|
|
|
|
|
* A note on appending the redirected output. With this change, a simple
|
|
|
|
|
mechanism is implemented to make ">>" work in action lines. In VMS
|
|
|
|
|
there is no simple feature like ">>" to have DCL command or program
|
2023-01-01 21:25:39 +00:00
|
|
|
|
output redirected and appended to a file. GNU Make for VMS already
|
2014-10-15 12:19:42 +00:00
|
|
|
|
implements the redirection of output. If such a redirection is detected,
|
2023-01-01 21:25:39 +00:00
|
|
|
|
an ">" on the action line, GNU Make creates a DCL command procedure to
|
2014-10-15 12:19:42 +00:00
|
|
|
|
execute the action and to redirect its output. Based on that, now ">>"
|
|
|
|
|
is also recognized and a similar but different command procedure is
|
|
|
|
|
created to implement the append. The main idea here is to create a
|
|
|
|
|
temporary file which collects the output and which is appended to the
|
|
|
|
|
wanted output file. Then the temporary file is deleted. This is all done
|
|
|
|
|
in the command procedure to keep changes in make small and simple. This
|
|
|
|
|
obviously has some limitations but it seems good enough compared with
|
|
|
|
|
the current ">" implementation. (And in my opinion, redirection is not
|
2023-01-01 21:25:39 +00:00
|
|
|
|
really what GNU Make has to do.) With this approach, it may happen that
|
2014-10-15 12:19:42 +00:00
|
|
|
|
the temporary file is not yet appended and is left in SYS$SCRATCH.
|
|
|
|
|
The temporary file names look like "CMDxxxxx.". Any time the created
|
|
|
|
|
command procedure can not complete, this happens. Pressing Ctrl+Y to
|
|
|
|
|
abort make is one case. In case of Ctrl+Y the associated command
|
|
|
|
|
procedure is left in SYS$SCRATCH as well. Its name is CMDxxxxx.COM.
|
|
|
|
|
|
|
|
|
|
* Change in the Ctrl+Y handling. The CtrlY handler now uses $delprc to
|
|
|
|
|
delete all children. This way also actions with DCL commands will be
|
|
|
|
|
stopped. As before the CtrlY handler then sends SIGQUIT to itself,
|
|
|
|
|
which is handled in common code.
|
|
|
|
|
|
|
|
|
|
* Change in deleteing temporary command files. Temporary command files
|
|
|
|
|
are now deleted in the vms child termination handler. That deletes
|
|
|
|
|
them even if a Ctrl+C was pressed.
|
|
|
|
|
|
|
|
|
|
* The behavior of pressing Ctrl+C is not changed. It still has only an
|
|
|
|
|
effect, after the current action is terminated. If that doesn't happen
|
|
|
|
|
or takes too long, Ctrl+Y should be used instead.
|
|
|
|
|
|
2002-10-25 18:42:52 +00:00
|
|
|
|
|
2013-05-26 17:53:21 +00:00
|
|
|
|
Version 3.81 (01 Apr 2006)
|
2003-05-02 01:44:59 +00:00
|
|
|
|
|
2023-01-01 21:25:39 +00:00
|
|
|
|
* GNU Make is ported to OS/2.
|
2005-02-28 07:48:22 +00:00
|
|
|
|
|
2023-01-01 21:25:39 +00:00
|
|
|
|
* GNU Make is ported to MinGW. The MinGW build is only supported by
|
2006-01-04 14:45:16 +00:00
|
|
|
|
the build_w32.bat batch file; see the file README.W32 for more
|
|
|
|
|
details.
|
2005-02-28 07:48:22 +00:00
|
|
|
|
|
2006-03-15 03:31:30 +00:00
|
|
|
|
* WARNING: Future backward-incompatibility!
|
|
|
|
|
Up to and including this release, the '$?' variable does not contain
|
|
|
|
|
any prerequisite that does not exist, even though that prerequisite
|
|
|
|
|
might have caused the target to rebuild. Starting with the _next_
|
2023-01-01 21:25:39 +00:00
|
|
|
|
release of GNU Make, '$?' will contain all prerequisites that caused
|
2013-10-20 16:49:01 +00:00
|
|
|
|
the target to be considered out of date.
|
2020-01-18 00:01:49 +00:00
|
|
|
|
See https://savannah.gnu.org/bugs/?16051
|
2006-03-15 03:31:30 +00:00
|
|
|
|
|
2005-03-04 12:52:32 +00:00
|
|
|
|
* WARNING: Backward-incompatibility!
|
2023-01-01 21:25:39 +00:00
|
|
|
|
GNU Make now implements a generic "second expansion" feature on the
|
2005-10-24 13:01:39 +00:00
|
|
|
|
prerequisites of both explicit and implicit (pattern) rules. In order
|
|
|
|
|
to enable this feature, the special target '.SECONDEXPANSION' must be
|
|
|
|
|
defined before the first target which takes advantage of it. If this
|
|
|
|
|
feature is enabled then after all rules have been parsed the
|
|
|
|
|
prerequisites are expanded again, this time with all the automatic
|
|
|
|
|
variables in scope. This means that in addition to using standard
|
|
|
|
|
SysV $$@ in prerequisites lists, you can also use complex functions
|
|
|
|
|
such as $$(notdir $$@) etc. This behavior applies to implicit rules,
|
|
|
|
|
as well, where the second expansion occurs when the rule is matched.
|
2006-02-11 19:02:21 +00:00
|
|
|
|
However, this means that when '.SECONDEXPANSION' is enabled you must
|
|
|
|
|
double-quote any "$" in your filenames; instead of "foo: boo$$bar" you
|
|
|
|
|
now must write "foo: foo$$$$bar". Note that the SysV $$@ etc. feature,
|
|
|
|
|
which used to be available by default, is now ONLY available when the
|
|
|
|
|
.SECONDEXPANSION target is defined. If your makefiles take advantage
|
|
|
|
|
of this SysV feature you will need to update them.
|
2005-03-04 12:52:32 +00:00
|
|
|
|
|
2005-06-26 03:31:29 +00:00
|
|
|
|
* WARNING: Backward-incompatibility!
|
2023-01-01 21:25:39 +00:00
|
|
|
|
In order to comply with POSIX, the way in which GNU Make processes
|
2007-11-04 21:54:00 +00:00
|
|
|
|
backslash-newline sequences in recipes has changed. If your makefiles
|
|
|
|
|
use backslash-newline sequences inside of single-quoted strings in
|
2023-01-01 21:25:39 +00:00
|
|
|
|
recipes you will be impacted by this change. See the GNU Make manual
|
2007-11-04 21:54:00 +00:00
|
|
|
|
subsection "Splitting Recipe Lines" (node "Splitting Lines"), in
|
|
|
|
|
section "Recipe Syntax", chapter "Writing Recipe in Rules", for
|
|
|
|
|
details.
|
2006-03-08 20:15:08 +00:00
|
|
|
|
|
|
|
|
|
* WARNING: Backward-incompatibility!
|
2023-01-01 21:25:39 +00:00
|
|
|
|
Some previous versions of GNU Make had a bug where "#" in a function
|
2006-03-08 20:15:08 +00:00
|
|
|
|
invocation such as $(shell ...) was treated as a make comment. A
|
|
|
|
|
workaround was to escape these with backslashes. This bug has been
|
|
|
|
|
fixed: if your makefile uses "\#" in a function invocation the
|
|
|
|
|
backslash is now preserved, so you'll need to remove it.
|
2005-06-26 03:31:29 +00:00
|
|
|
|
|
2007-11-04 21:54:00 +00:00
|
|
|
|
* New command line option: -L (--check-symlink-times). On systems that
|
2023-01-01 21:25:39 +00:00
|
|
|
|
support symbolic links, if this option is given then GNU Make will
|
2005-02-28 07:48:22 +00:00
|
|
|
|
use the most recent modification time of any symbolic links that are
|
|
|
|
|
used to resolve target files. The default behavior remains as it
|
|
|
|
|
always has: use the modification time of the actual target file only.
|
2003-05-02 01:44:59 +00:00
|
|
|
|
|
2006-01-04 14:45:16 +00:00
|
|
|
|
* The "else" conditional line can now be followed by any other valid
|
2005-05-13 12:45:30 +00:00
|
|
|
|
conditional on the same line: this does not increase the depth of the
|
2005-06-09 19:19:20 +00:00
|
|
|
|
conditional nesting, so only one "endif" is required to close the
|
|
|
|
|
conditional.
|
2005-05-13 12:45:30 +00:00
|
|
|
|
|
2003-05-02 01:44:59 +00:00
|
|
|
|
* All pattern-specific variables that match a given target are now used
|
|
|
|
|
(previously only the first match was used).
|
|
|
|
|
|
|
|
|
|
* Target-specific variables can be marked as exportable using the
|
|
|
|
|
"export" keyword.
|
|
|
|
|
|
|
|
|
|
* In a recursive $(call ...) context, any extra arguments from the outer
|
|
|
|
|
call are now masked in the context of the inner call.
|
|
|
|
|
|
2004-01-21 06:32:59 +00:00
|
|
|
|
* Implemented a solution for the "thundering herd" problem with "-j -l".
|
2023-01-01 21:25:39 +00:00
|
|
|
|
This version of GNU Make uses an algorithm suggested by Thomas Riedl
|
2004-01-21 06:32:59 +00:00
|
|
|
|
<thomas.riedl@siemens.com> to track the number of jobs started in the
|
2023-01-01 21:25:39 +00:00
|
|
|
|
last second and artificially adjust GNU Make's view of the system's
|
2005-02-28 07:48:22 +00:00
|
|
|
|
load average accordingly.
|
|
|
|
|
|
|
|
|
|
* New special variables available in this release:
|
2005-11-14 15:31:13 +00:00
|
|
|
|
- .INCLUDE_DIRS: Expands to a list of directories that make searches
|
|
|
|
|
for included makefiles.
|
2005-04-08 12:51:20 +00:00
|
|
|
|
- .FEATURES: Contains a list of special features available in this
|
2023-01-01 21:25:39 +00:00
|
|
|
|
version of GNU Make.
|
2005-05-03 13:57:20 +00:00
|
|
|
|
- .DEFAULT_GOAL: Set the name of the default goal make will
|
|
|
|
|
use if no goals are provided on the command line.
|
2005-06-25 18:57:28 +00:00
|
|
|
|
- MAKE_RESTARTS: If set, then this is the number of times this
|
|
|
|
|
instance of make has been restarted (see "How Makefiles Are Remade"
|
|
|
|
|
in the manual).
|
2005-03-04 12:52:32 +00:00
|
|
|
|
- New automatic variable: $| (added in 3.80, actually): contains all
|
|
|
|
|
the order-only prerequisites defined for the target.
|
2004-01-21 06:32:59 +00:00
|
|
|
|
|
2005-02-16 05:38:10 +00:00
|
|
|
|
* New functions available in this release:
|
|
|
|
|
- $(lastword ...) returns the last word in the list. This gives
|
|
|
|
|
identical results as $(word $(words ...) ...), but is much faster.
|
|
|
|
|
- $(abspath ...) returns the absolute path (all "." and ".."
|
|
|
|
|
directories resolved, and any duplicate "/" characters removed) for
|
|
|
|
|
each path provided.
|
|
|
|
|
- $(realpath ...) returns the canonical pathname for each path
|
|
|
|
|
provided. The canonical pathname is the absolute pathname, with
|
|
|
|
|
all symbolic links resolved as well.
|
2005-07-04 03:50:59 +00:00
|
|
|
|
- $(info ...) prints its arguments to stdout. No makefile name or
|
|
|
|
|
line number info, etc. is printed.
|
2005-11-17 07:27:28 +00:00
|
|
|
|
- $(flavor ...) returns the flavor of a variable.
|
2006-02-10 05:29:00 +00:00
|
|
|
|
- $(or ...) provides a short-circuiting OR conditional: each argument
|
|
|
|
|
is expanded. The first true (non-empty) argument is returned; no
|
|
|
|
|
further arguments are expanded. Expands to empty if there are no
|
|
|
|
|
true arguments.
|
|
|
|
|
- $(and ...) provides a short-circuiting AND conditional: each
|
|
|
|
|
argument is expanded. The first false (empty) argument is
|
|
|
|
|
returned; no further arguments are expanded. Expands to the last
|
|
|
|
|
argument if all arguments are true.
|
2005-02-16 05:38:10 +00:00
|
|
|
|
|
|
|
|
|
* Changes made for POSIX compatibility:
|
2007-11-04 21:54:00 +00:00
|
|
|
|
- Only touch targets (under -t) if they have a recipe.
|
2005-02-16 05:38:10 +00:00
|
|
|
|
- Setting the SHELL make variable does NOT change the value of the
|
|
|
|
|
SHELL environment variable given to programs invoked by make. As
|
|
|
|
|
an enhancement to POSIX, if you export the make variable SHELL then
|
|
|
|
|
it will be set in the environment, just as before.
|
|
|
|
|
|
2006-01-04 14:45:16 +00:00
|
|
|
|
* On MS Windows systems, explicitly setting SHELL to a pathname ending
|
2023-01-01 21:25:39 +00:00
|
|
|
|
in "cmd" or "cmd.exe" (case-insensitive) will force GNU Make to use
|
2006-01-04 14:45:16 +00:00
|
|
|
|
the DOS command interpreter in batch mode even if a UNIX-like shell
|
|
|
|
|
could be found on the system.
|
|
|
|
|
|
|
|
|
|
* On VMS there is now support for case-sensitive filesystems such as ODS5.
|
2013-09-22 04:48:05 +00:00
|
|
|
|
See the README.VMS file for information.
|
2004-09-21 13:51:58 +00:00
|
|
|
|
|
2006-02-01 07:54:22 +00:00
|
|
|
|
* Parallel builds (-jN) no longer require a working Bourne shell on
|
|
|
|
|
Windows platforms. They work even with the stock Windows shells, such
|
|
|
|
|
as cmd.exe and command.com.
|
|
|
|
|
|
2005-07-04 03:50:59 +00:00
|
|
|
|
* Updated to autoconf 2.59, automake 1.9.5, and gettext 0.14.1. Users
|
2003-07-31 13:04:32 +00:00
|
|
|
|
should not be impacted.
|
|
|
|
|
|
2005-02-16 05:38:10 +00:00
|
|
|
|
* New translations for Swedish, Chinese (simplified), Ukrainian,
|
2005-04-08 12:51:20 +00:00
|
|
|
|
Belarusian, Finnish, Kinyarwandan, and Irish. Many updated
|
|
|
|
|
translations.
|
2005-02-16 05:38:10 +00:00
|
|
|
|
|
2006-01-04 14:45:16 +00:00
|
|
|
|
A complete list of bugs fixed in this version is available here:
|
|
|
|
|
|
2020-01-18 00:01:49 +00:00
|
|
|
|
https://savannah.gnu.org/bugs/index.php?group=make&report_id=111&fix_release_id=103
|
2006-01-04 14:45:16 +00:00
|
|
|
|
|
1998-07-30 20:54:47 +00:00
|
|
|
|
|
2013-05-26 17:53:21 +00:00
|
|
|
|
Version 3.80 (03 Oct 2002)
|
2002-04-20 19:25:54 +00:00
|
|
|
|
|
2002-07-09 06:35:56 +00:00
|
|
|
|
* A new feature exists: order-only prerequisites. These prerequisites
|
|
|
|
|
affect the order in which targets are built, but they do not impact
|
|
|
|
|
the rebuild/no-rebuild decision of their dependents. That is to say,
|
|
|
|
|
they allow you to require target B be built before target A, without
|
|
|
|
|
requiring that target A will always be rebuilt if target B is updated.
|
|
|
|
|
Patch for this feature provided by Greg McGary <greg@mcgary.org>.
|
|
|
|
|
|
2023-01-01 21:25:39 +00:00
|
|
|
|
* For compatibility with SysV make, GNU Make now supports the peculiar
|
2002-07-10 12:59:07 +00:00
|
|
|
|
syntax $$@, $$(@D), and $$(@F) in the prerequisites list of a rule.
|
|
|
|
|
This syntax is only valid within explicit and static pattern rules: it
|
|
|
|
|
cannot be used in implicit (suffix or pattern) rules. Edouard G. Parmelan
|
|
|
|
|
<egp@free.fr> provided a patch implementing this feature; however, I
|
2002-09-03 21:43:04 +00:00
|
|
|
|
decided to implement it in a different way.
|
2002-07-10 12:59:07 +00:00
|
|
|
|
|
2002-09-10 20:59:03 +00:00
|
|
|
|
* The argument to the "ifdef" conditional is now expanded before it's
|
|
|
|
|
tested, so it can be a constructed variable name.
|
|
|
|
|
|
|
|
|
|
Similarly, the arguments to "export" (when not used in a variable
|
|
|
|
|
definition context) and "unexport" are also now expanded.
|
|
|
|
|
|
2002-09-03 21:43:04 +00:00
|
|
|
|
* A new function is defined: $(value ...). The argument to this
|
2002-07-08 02:26:47 +00:00
|
|
|
|
function is the _name_ of a variable. The result of the function is
|
|
|
|
|
the value of the variable, without having been expanded.
|
|
|
|
|
|
|
|
|
|
* A new function is defined: $(eval ...). The arguments to this
|
|
|
|
|
function should expand to makefile commands, which will then be
|
|
|
|
|
evaluated as if they had appeared in the makefile. In combination
|
|
|
|
|
with define/endef multiline variable definitions this is an extremely
|
2002-09-10 20:59:03 +00:00
|
|
|
|
powerful capability. The $(value ...) function is also sometimes
|
|
|
|
|
useful here.
|
2002-07-08 02:26:47 +00:00
|
|
|
|
|
|
|
|
|
* A new built-in variable is defined, $(MAKEFILE_LIST). It contains a
|
2023-01-01 21:25:39 +00:00
|
|
|
|
list of each makefile GNU Make has read, or started to read, in the
|
2002-07-08 02:26:47 +00:00
|
|
|
|
order in which they were encountered. So, the last filename in the
|
|
|
|
|
list when a makefile is just being read (before any includes) is the
|
|
|
|
|
name of the current makefile.
|
|
|
|
|
|
2002-08-08 00:11:19 +00:00
|
|
|
|
* A new built-in variable is defined: $(.VARIABLES). When it is
|
|
|
|
|
expanded it returns a complete list of variable names defined by all
|
|
|
|
|
makefiles at that moment.
|
|
|
|
|
|
2007-11-04 21:54:00 +00:00
|
|
|
|
* A new command line option is defined, -B or --always-make. If
|
2023-01-01 21:25:39 +00:00
|
|
|
|
specified GNU Make will consider all targets out-of-date even if they
|
2002-08-08 00:11:19 +00:00
|
|
|
|
would otherwise not be.
|
2002-08-01 13:16:57 +00:00
|
|
|
|
|
2002-04-20 19:25:54 +00:00
|
|
|
|
* The arguments to $(call ...) functions were being stored in $1, $2,
|
|
|
|
|
etc. as recursive variables, even though they are fully expanded
|
|
|
|
|
before assignment. This means that escaped dollar signs ($$ etc.)
|
|
|
|
|
were not behaving properly. Now the arguments are stored as simple
|
|
|
|
|
variables. This may mean that if you added extra escaping to your
|
|
|
|
|
$(call ...) function arguments you will need to undo it now.
|
2001-06-01 03:56:50 +00:00
|
|
|
|
|
2002-09-03 21:43:04 +00:00
|
|
|
|
* The variable invoked by $(call ...) can now be recursive: unlike other
|
|
|
|
|
variables it can reference itself and this will not produce an error
|
|
|
|
|
when it is used as the first argument to $(call ...) (but only then).
|
|
|
|
|
|
2000-07-30 18:26:42 +00:00
|
|
|
|
* New pseudo-target .LOW_RESOLUTION_TIME, superseding the configure
|
|
|
|
|
option --disable-nsec-timestamps. You might need this if your build
|
|
|
|
|
process depends on tools like "cp -p" preserving time stamps, since
|
|
|
|
|
"cp -p" (right now) doesn't preserve the subsecond portion of a time
|
|
|
|
|
stamp.
|
|
|
|
|
|
2002-04-20 19:25:54 +00:00
|
|
|
|
* Updated translations for French, Galician, German, Japanese, Korean,
|
2002-04-22 04:35:19 +00:00
|
|
|
|
and Russian. New translations for Croatian, Danish, Hebrew, and
|
|
|
|
|
Turkish.
|
2002-04-21 23:57:24 +00:00
|
|
|
|
|
2002-09-10 20:59:03 +00:00
|
|
|
|
* Updated internationalization support to Gettext 0.11.5.
|
2023-01-01 21:25:39 +00:00
|
|
|
|
GNU Make now uses Gettext's "external" feature, and does not include
|
2002-04-21 23:57:24 +00:00
|
|
|
|
any internationalization code itself. Configure will search your
|
|
|
|
|
system for an existing implementation of GNU Gettext (only GNU Gettext
|
|
|
|
|
is acceptable) and use it if it exists. If not, NLS will be disabled.
|
|
|
|
|
See ABOUT-NLS for more information.
|
|
|
|
|
|
2002-10-04 03:17:56 +00:00
|
|
|
|
* Updated to autoconf 2.54 and automake 1.7. Users should not be impacted.
|
2006-01-04 14:45:16 +00:00
|
|
|
|
|
2014-10-15 12:19:42 +00:00
|
|
|
|
* VMS-specific changes:
|
|
|
|
|
|
|
|
|
|
* In default.c define variable ARCH as IA64 for VMS on Itanium systems.
|
|
|
|
|
|
|
|
|
|
* In makefile.vms avoid name collision for glob and globfree.
|
|
|
|
|
|
|
|
|
|
* This is the VMS port of GNU Make done by Hartmut.Becker@compaq.com.
|
|
|
|
|
|
|
|
|
|
It is based on the specific version 3.77k and on 3.78.1. 3.77k was done
|
2024-04-14 19:27:12 +00:00
|
|
|
|
by Klaus Kämpf <kkaempf@rmi.de>, the code was based on the VMS port of
|
2014-10-15 12:19:42 +00:00
|
|
|
|
GNU Make 3.60 by Mike Moretti.
|
|
|
|
|
|
|
|
|
|
It was ported on OpenVMS/Alpha V7.1, DECC V5.7-006. It was re-build and
|
|
|
|
|
tested on OpenVMS/Alpha V7.2, OpenVMS/VAX 7.1 and 5.5-2. Different
|
|
|
|
|
versions of DECC were used. VAXC was tried: it fails; but it doesn't
|
|
|
|
|
seem worth to get it working. There are still some PTRMISMATCH warnings
|
|
|
|
|
during the compile. Although perl is working on VMS the test scripts
|
|
|
|
|
don't work. The function $shell is still missing.
|
|
|
|
|
|
|
|
|
|
There is a known bug in some of the VMS CRTLs. It is in the shipped
|
|
|
|
|
versions of VMS V7.2 and V7.2-1 and in the currently (October 1999)
|
|
|
|
|
available ECOs for VMS V7.1 and newer versions. It is fixed in versions
|
|
|
|
|
shipped with newer VMS versions and all ECO kits after October 1999. It
|
|
|
|
|
only shows up during the daylight saving time period (DST): stat()
|
2023-01-01 21:25:39 +00:00
|
|
|
|
returns a modification time 1 hour ahead. This results in GNU Make
|
2014-10-15 12:19:42 +00:00
|
|
|
|
warning messages. For a just created source you will see:
|
|
|
|
|
|
|
|
|
|
$ gmake x.exe
|
|
|
|
|
gmake.exe;1: *** Warning: File 'x.c' has modification time in the future
|
|
|
|
|
(940582863 > 940579269)
|
|
|
|
|
cc /obj=x.obj x.c
|
|
|
|
|
link x.obj /exe=x.exe
|
|
|
|
|
gmake.exe;1: *** Warning: Clock skew detected. Your build may be
|
|
|
|
|
incomplete.
|
|
|
|
|
|
|
|
|
|
|
2006-01-04 14:45:16 +00:00
|
|
|
|
A complete list of bugs fixed in this version is available here:
|
|
|
|
|
|
2020-01-18 00:01:49 +00:00
|
|
|
|
https://savannah.gnu.org/bugs/index.php?group=make&report_id=111&fix_release_id=102
|
2006-01-04 14:45:16 +00:00
|
|
|
|
|
2001-06-01 03:56:50 +00:00
|
|
|
|
|
2013-05-26 17:53:21 +00:00
|
|
|
|
Version 3.79.1 (23 Jun 2000)
|
2000-06-20 05:48:40 +00:00
|
|
|
|
|
2000-06-23 18:55:43 +00:00
|
|
|
|
* .SECONDARY with no prerequisites now prevents any target from being
|
|
|
|
|
removed because make thinks it's an intermediate file, not just those
|
|
|
|
|
listed in the makefile.
|
|
|
|
|
|
2000-07-30 18:26:42 +00:00
|
|
|
|
* New configure option --disable-nsec-timestamps, but this was
|
|
|
|
|
superseded in later versions by the .LOW_RESOLUTION_TIME pseudo-target.
|
2000-06-20 05:48:40 +00:00
|
|
|
|
|
2013-05-26 17:53:21 +00:00
|
|
|
|
Version 3.79 (04 Apr 2000)
|
1999-10-15 07:00:58 +00:00
|
|
|
|
|
2023-01-01 21:25:39 +00:00
|
|
|
|
* GNU Make optionally supports internationalization and locales via the
|
2000-01-22 08:59:09 +00:00
|
|
|
|
GNU gettext (or local gettext if suitable) package. See the ABOUT-NLS
|
2023-01-01 21:25:39 +00:00
|
|
|
|
file for more information on configuring GNU Make for NLS.
|
2000-01-22 08:59:09 +00:00
|
|
|
|
|
2023-01-01 21:25:39 +00:00
|
|
|
|
* Previously, GNU Make quoted variables such as MAKEFLAGS and
|
1999-10-15 07:00:58 +00:00
|
|
|
|
MAKEOVERRIDES for proper parsing by the shell. This allowed them to
|
|
|
|
|
be used within make build scripts. However, using them there is not
|
|
|
|
|
proper behavior: they are meant to be passed to subshells via the
|
|
|
|
|
environment. Unfortunately the values were not quoted properly to be
|
2000-02-05 07:37:40 +00:00
|
|
|
|
passed through the environment. This meant that make didn't properly
|
|
|
|
|
pass some types of command line values to submakes.
|
1999-10-15 07:00:58 +00:00
|
|
|
|
|
|
|
|
|
With this version we change that behavior: now these variables are
|
|
|
|
|
quoted properly for passing through the environment, which is the
|
|
|
|
|
correct way to do it. If you previously used these variables
|
|
|
|
|
explicitly within a make rule you may need to re-examine your use for
|
|
|
|
|
correctness given this change.
|
|
|
|
|
|
2000-07-07 17:34:56 +00:00
|
|
|
|
* A new pseudo-target .NOTPARALLEL is available. If defined, the
|
2000-02-05 07:37:40 +00:00
|
|
|
|
current makefile is run serially regardless of the value of -j.
|
|
|
|
|
However, submakes are still eligible for parallel execution.
|
1999-11-22 06:15:35 +00:00
|
|
|
|
|
2000-01-23 07:05:16 +00:00
|
|
|
|
* The --debug option has changed: it now allows optional flags
|
1999-12-08 20:13:50 +00:00
|
|
|
|
controlling the amount and type of debugging output. By default only
|
|
|
|
|
a minimal amount information is generated, displaying the names of
|
2000-04-05 16:02:55 +00:00
|
|
|
|
"normal" targets (not makefiles) that were deemed out of date and in
|
|
|
|
|
need of being rebuilt.
|
2000-01-22 05:43:03 +00:00
|
|
|
|
|
2000-02-05 07:37:40 +00:00
|
|
|
|
Note that the -d option behaves as before: it takes no arguments and
|
|
|
|
|
all debugging information is generated.
|
|
|
|
|
|
|
|
|
|
* The `-p' (print database) output now includes filename and linenumber
|
2000-06-13 05:22:52 +00:00
|
|
|
|
information for variable definitions, to aid debugging.
|
2000-01-23 07:05:16 +00:00
|
|
|
|
|
2000-04-05 16:02:55 +00:00
|
|
|
|
* The wordlist function no longer reverses its arguments if the "start"
|
|
|
|
|
value is greater than the "end" value. If that's true, nothing is
|
|
|
|
|
returned.
|
|
|
|
|
|
2023-01-01 21:25:39 +00:00
|
|
|
|
* Hartmut Becker provided many updates for the VMS port of GNU Make.
|
2013-09-22 04:48:05 +00:00
|
|
|
|
See the README.VMS file for more details.
|
2014-10-15 12:19:42 +00:00
|
|
|
|
|
|
|
|
|
* VMS-specific changes:
|
|
|
|
|
|
2023-01-01 21:25:39 +00:00
|
|
|
|
* Fix a problem with automatically remaking makefiles. GNU Make uses an
|
2014-10-15 12:19:42 +00:00
|
|
|
|
execve to restart itself after a successful remake of the makefile. On
|
|
|
|
|
UNIX systems execve replaces the running program with a new one and
|
|
|
|
|
resets all signal handling to the default. On VMS execve creates a child
|
|
|
|
|
process, signal and exit handlers of the parent are still active, and,
|
|
|
|
|
unfortunately, corrupt the exit code from the child. Fix in job.c:
|
|
|
|
|
ignore SIGCHLD.
|
|
|
|
|
|
|
|
|
|
* Added some switches to reflect latest features of DECC. Modifications in
|
|
|
|
|
makefile.vms.
|
|
|
|
|
|
|
|
|
|
* Set some definitions to reflect latest features of DECC. Modifications in
|
|
|
|
|
config.h-vms (which is copied to config.h).
|
|
|
|
|
|
|
|
|
|
* Added extern strcmpi declaration to avoid 'implicitly declared' messages.
|
|
|
|
|
Modification in make.h.
|
|
|
|
|
|
|
|
|
|
* Default rule for C++, conditionals for gcc (GCC_IS_NATIVE) or DEC/Digital/
|
|
|
|
|
Compaq c/c++ compilers. Modifications in default.c.
|
|
|
|
|
|
|
|
|
|
* Usage of opendir() and friends, suppress file version. Modifications in
|
|
|
|
|
dir.c.
|
|
|
|
|
|
|
|
|
|
* Added VMS specific code to handle ctrl+c and ctrl+y to abort make.
|
|
|
|
|
Modifications in job.c.
|
|
|
|
|
|
|
|
|
|
* Added support to have case sensitive targets and dependencies but to
|
|
|
|
|
still use case blind file names. This is especially useful for Java
|
|
|
|
|
makefiles on VMS:
|
|
|
|
|
|
|
|
|
|
.SUFFIXES :
|
|
|
|
|
.SUFFIXES : .class .java
|
|
|
|
|
.java.class :
|
|
|
|
|
javac "$<
|
|
|
|
|
HelloWorld.class : HelloWorld.java
|
|
|
|
|
|
|
|
|
|
* A new macro WANT_CASE_SENSITIVE_TARGETS in config.h-vms was introduced.
|
|
|
|
|
It needs to be enabled to get this feature; default is disabled. The
|
|
|
|
|
macro HAVE_CASE_INSENSITIVE_FS must not be touched: it is still enabled.
|
|
|
|
|
Modifications in file.c and config.h-vms.
|
|
|
|
|
|
|
|
|
|
* Bootstrap make to start building make is still makefile.com, but make
|
|
|
|
|
needs to be re-made with a make to make a correct version: ignore all
|
|
|
|
|
possible warnings, delete all objects, rename make.exe to a different
|
|
|
|
|
name and run it.
|
|
|
|
|
|
|
|
|
|
* Made some minor modifications to the bootstrap build makefile.com.
|
1999-11-17 07:33:47 +00:00
|
|
|
|
|
2013-05-26 17:53:21 +00:00
|
|
|
|
Version 3.78 (22 Sep 1999)
|
1999-02-22 07:23:30 +00:00
|
|
|
|
|
1999-08-13 07:36:26 +00:00
|
|
|
|
* Two new functions, $(error ...) and $(warning ...) are available. The
|
1999-03-26 04:04:42 +00:00
|
|
|
|
former will cause make to fail and exit immediately upon expansion of
|
|
|
|
|
the function, with the text provided as the error message. The latter
|
|
|
|
|
causes the text provided to be printed as a warning message, but make
|
|
|
|
|
proceeds normally.
|
|
|
|
|
|
1999-08-13 07:36:26 +00:00
|
|
|
|
* A new function $(call ...) is available. This allows users to create
|
1999-07-21 16:06:18 +00:00
|
|
|
|
their own parameterized macros and invoke them later. Original
|
1999-08-13 07:36:26 +00:00
|
|
|
|
implementation of this function was provided by Han-Wen Nienhuys
|
1999-07-15 07:36:44 +00:00
|
|
|
|
<hanwen@cs.uu.nl>.
|
|
|
|
|
|
1999-08-13 07:36:26 +00:00
|
|
|
|
* A new function $(if ...) is available. It provides if-then-else
|
|
|
|
|
capabilities in a builtin function. Original implementation of this
|
|
|
|
|
function was provided by Han-Wen Nienhuys <hanwen@cs.uu.nl>.
|
|
|
|
|
|
1999-02-22 07:23:30 +00:00
|
|
|
|
* Make defines a new variable, .LIBPATTERNS. This variable controls how
|
1999-04-02 06:19:33 +00:00
|
|
|
|
library dependency expansion (dependencies like ``-lfoo'') is performed.
|
1999-03-31 23:25:13 +00:00
|
|
|
|
|
1999-07-21 16:06:18 +00:00
|
|
|
|
* Make accepts CRLF sequences as well as traditional LF, for
|
1999-04-02 06:19:33 +00:00
|
|
|
|
compatibility with makefiles created on other operating systems.
|
1999-04-25 04:30:55 +00:00
|
|
|
|
|
1999-07-08 06:49:52 +00:00
|
|
|
|
* Make accepts a new option: -R, or --no-builtin-variables. This option
|
|
|
|
|
disables the definition of the rule-specific builtin variables (CC,
|
|
|
|
|
LD, AR, etc.). Specifying this option forces -r (--no-builtin-rules)
|
|
|
|
|
as well.
|
|
|
|
|
|
1999-07-15 07:36:44 +00:00
|
|
|
|
* A "job server" feature, suggested by Howard Chu <hyc@highlandsun.com>.
|
1999-04-25 04:30:55 +00:00
|
|
|
|
|
2023-01-01 21:25:39 +00:00
|
|
|
|
On systems that support POSIX pipe(2) semantics, GNU Make can now pass
|
1999-04-25 04:30:55 +00:00
|
|
|
|
-jN options to submakes rather than forcing them all to use -j1. The
|
|
|
|
|
top make and all its sub-make processes use a pipe to communicate with
|
|
|
|
|
each other to ensure that no more than N jobs are started across all
|
|
|
|
|
makes. To get the old behavior of -j back, you can configure make
|
|
|
|
|
with the --disable-job-server option.
|
1999-08-24 04:49:39 +00:00
|
|
|
|
|
|
|
|
|
* The confusing term "dependency" has been replaced by the more accurate
|
2023-01-01 21:25:39 +00:00
|
|
|
|
and standard term "prerequisite", both in the manual and in all GNU Make
|
1999-08-24 04:49:39 +00:00
|
|
|
|
output.
|
1999-09-01 03:58:04 +00:00
|
|
|
|
|
2023-01-01 21:25:39 +00:00
|
|
|
|
* GNU Make supports the "big archive" library format introduced in AIX 4.3.
|
1999-09-01 03:58:04 +00:00
|
|
|
|
|
2023-01-01 21:25:39 +00:00
|
|
|
|
* GNU Make supports large files on AIX, HP-UX, and IRIX. These changes
|
1999-09-01 03:58:04 +00:00
|
|
|
|
were provided by Paul Eggert <eggert@twinsun.com>. (Large file
|
|
|
|
|
support for Solaris and Linux was introduced in 3.77, but the
|
|
|
|
|
configuration had issues: these have also been resolved).
|
|
|
|
|
|
2023-01-01 21:25:39 +00:00
|
|
|
|
* The Windows 95/98/NT (W32) version of GNU Make now has native support
|
1999-09-01 03:58:04 +00:00
|
|
|
|
for the Cygnus Cygwin release B20.1 shell (bash).
|
1999-09-16 05:58:44 +00:00
|
|
|
|
|
2023-01-01 21:25:39 +00:00
|
|
|
|
* The GNU Make regression test suite, long available separately "under
|
1999-09-16 05:58:44 +00:00
|
|
|
|
the table", has been integrated into the release. You can invoke it
|
|
|
|
|
by running "make check" in the distribution. Note that it requires
|
|
|
|
|
Perl (either Perl 4 or Perl 5) to run.
|
1999-02-22 07:23:30 +00:00
|
|
|
|
|
2013-05-26 17:53:21 +00:00
|
|
|
|
Version 3.77 (28 Jul 1998)
|
1998-07-30 20:54:47 +00:00
|
|
|
|
|
|
|
|
|
* Implement BSD make's "?=" variable assignment operator. The variable
|
|
|
|
|
is assigned the specified value only if that variable is not already
|
|
|
|
|
defined.
|
|
|
|
|
|
|
|
|
|
* Make defines a new variable, "CURDIR", to contain the current working
|
|
|
|
|
directory (after the -C option, if any, has been processed).
|
|
|
|
|
Modifying this variable has no effect on the operation of make.
|
|
|
|
|
|
|
|
|
|
* Make defines a new default RCS rule, for new-style master file
|
|
|
|
|
storage: ``% :: RCS/%'' (note no ``,v'' suffix).
|
|
|
|
|
|
|
|
|
|
Make defines new default rules for DOS-style C++ file naming
|
|
|
|
|
conventions, with ``.cpp'' suffixes. All the same rules as for
|
|
|
|
|
``.cc'' and ``.C'' suffixes are provided, along with LINK.cpp and
|
|
|
|
|
COMPILE.cpp macros (which default to the same value as LINK.cc and
|
|
|
|
|
COMPILE.cc). Note CPPFLAGS is still C preprocessor flags! You should
|
|
|
|
|
use CXXFLAGS to change C++ compiler flags.
|
|
|
|
|
|
|
|
|
|
* A new feature, "target-specific variable values", has been added.
|
|
|
|
|
This is a large change so please see the appropriate sections of the
|
|
|
|
|
manual for full details. Briefly, syntax like this:
|
|
|
|
|
|
|
|
|
|
TARGET: VARIABLE = VALUE
|
|
|
|
|
|
|
|
|
|
defines VARIABLE as VALUE within the context of TARGET. This is
|
|
|
|
|
similar to SunOS make's "TARGET := VARIABLE = VALUE" feature. Note
|
|
|
|
|
that the assignment may be of any type, not just recursive, and that
|
|
|
|
|
the override keyword is available.
|
|
|
|
|
|
|
|
|
|
COMPATIBILITY: This new syntax means that if you have any rules where
|
|
|
|
|
the first or second dependency has an equal sign (=) in its name,
|
|
|
|
|
you'll have to escape them with a backslash: "foo : bar\=baz".
|
|
|
|
|
Further, if you have any dependencies which already contain "\=",
|
|
|
|
|
you'll have to escape both of them: "foo : bar\\\=baz".
|
|
|
|
|
|
|
|
|
|
* A new appendix listing the most common error and warning messages
|
2023-01-01 21:25:39 +00:00
|
|
|
|
generated by GNU Make, with some explanation, has been added to the
|
|
|
|
|
GNU Make User's Manual.
|
1998-07-30 20:54:47 +00:00
|
|
|
|
|
2023-01-01 21:25:39 +00:00
|
|
|
|
* Updates to the GNU Make Customs library support (see README.customs).
|
1998-07-30 20:54:47 +00:00
|
|
|
|
|
|
|
|
|
* Updates to the Windows 95/NT port from Rob Tulloh (see README.W32),
|
|
|
|
|
and to the DOS port from Eli Zaretski (see README.DOS).
|
2014-10-15 12:19:42 +00:00
|
|
|
|
|
|
|
|
|
* VMS-specific changes:
|
|
|
|
|
|
|
|
|
|
* This is the VMS port of GNU Make.
|
|
|
|
|
It is based on the VMS port of GNU Make 3.60 by Mike Moretti.
|
2024-04-14 19:27:12 +00:00
|
|
|
|
This port was done by Klaus Kämpf <kkaempf@rmi.de>
|
2014-10-15 12:19:42 +00:00
|
|
|
|
|
|
|
|
|
* There is first-level support available from proGIS Software, Germany.
|
2022-10-18 18:36:40 +00:00
|
|
|
|
Visit their web-site at https://www.progis.de to get information
|
2014-10-15 12:19:42 +00:00
|
|
|
|
about other vms software and forthcoming updates to gnu make.
|
|
|
|
|
|
|
|
|
|
* /bin/sh style I/O redirection is supported. You can now write lines like
|
|
|
|
|
mcr sys$disk:[]program.exe < input.txt > output.txt &> error.txt
|
|
|
|
|
|
|
|
|
|
* Makefile variables are looked up in the current environment. You can set
|
|
|
|
|
symbols or logicals in DCL and evaluate them in the Makefile via
|
|
|
|
|
$(<name-of-symbol-or-logical>). Variables defined in the Makefile
|
|
|
|
|
override VMS symbols/logicals !
|
|
|
|
|
|
|
|
|
|
* Functions for file names are working now. See the GNU Make manual for
|
|
|
|
|
$(dir ...) and $(wildcard ...). Unix-style and VMS-style names are
|
|
|
|
|
supported as arguments.
|
|
|
|
|
|
|
|
|
|
* The default rules are set up for GNU C. Building an executable from a
|
|
|
|
|
single source file is as easy as 'make file.exe'.
|
|
|
|
|
|
|
|
|
|
* The variable $(ARCH) is predefined as ALPHA or VAX resp. Makefiles for
|
|
|
|
|
different VMS systems can now be written by checking $(ARCH) as in
|
|
|
|
|
ifeq ($(ARCH),ALPHA)
|
|
|
|
|
$(ECHO) "On the Alpha"
|
|
|
|
|
else
|
|
|
|
|
$(ECHO) "On the VAX"
|
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
* Command lines of excessive length are correctly broken and written to a
|
|
|
|
|
batch file in sys$scratch for later execution. There's no limit to the
|
|
|
|
|
lengths of commands (and no need for .opt files :-) any more.
|
|
|
|
|
|
|
|
|
|
* Empty commands are handled correctly and don't end in a new DCL process.
|
1995-03-07 23:44:43 +00:00
|
|
|
|
|
2013-05-26 17:53:21 +00:00
|
|
|
|
Version 3.76.1 (19 Sep 1997)
|
1997-09-19 19:47:55 +00:00
|
|
|
|
|
|
|
|
|
* Small (but serious) bug fix. Quick rollout to get into the GNU source CD.
|
|
|
|
|
|
2013-05-26 17:53:21 +00:00
|
|
|
|
Version 3.76 (16 Sep 1997)
|
1997-04-07 07:21:16 +00:00
|
|
|
|
|
2023-01-01 21:25:39 +00:00
|
|
|
|
* GNU Make now uses automake to control Makefile.in generation. This
|
1997-08-18 20:14:30 +00:00
|
|
|
|
should make it more consistent with the GNU standards.
|
|
|
|
|
|
1997-04-07 07:21:16 +00:00
|
|
|
|
* VPATH functionality has been changed to incorporate the VPATH+ patch,
|
|
|
|
|
previously maintained by Paul Smith <psmith@baynetworks.com>. See the
|
|
|
|
|
manual.
|
|
|
|
|
|
|
|
|
|
* Make defines a new variable, `MAKECMDGOALS', to contain the goals that
|
|
|
|
|
were specified on the command line, if any. Modifying this variable
|
|
|
|
|
has no effect on the operation of make.
|
|
|
|
|
|
|
|
|
|
* A new function, `$(wordlist S,E,TEXT)', is available: it returns a
|
|
|
|
|
list of words from number S to number E (inclusive) of TEXT.
|
|
|
|
|
|
|
|
|
|
* Instead of an error, detection of future modification times gives a
|
2023-01-01 21:25:39 +00:00
|
|
|
|
warning and continues. The warning is repeated just before GNU Make
|
1997-08-18 18:11:04 +00:00
|
|
|
|
exits, so it is less likely to be lost.
|
1997-04-07 07:21:16 +00:00
|
|
|
|
|
|
|
|
|
* Fix the $(basename) and $(suffix) functions so they only operate on
|
|
|
|
|
the last filename, not the entire string:
|
|
|
|
|
|
|
|
|
|
Command Old Result New Result
|
|
|
|
|
------- ---------- ----------
|
|
|
|
|
$(basename a.b) a a
|
|
|
|
|
$(basename a.b/c) a a.b/c
|
|
|
|
|
$(suffix a.b) b b
|
|
|
|
|
$(suffix a.b/c) b/c <empty>
|
|
|
|
|
|
1997-08-18 18:11:04 +00:00
|
|
|
|
* The $(strip) function now removes newlines as well as TABs and spaces.
|
|
|
|
|
|
1997-09-16 14:17:23 +00:00
|
|
|
|
* The $(shell) function now changes CRLF (\r\n) pairs to a space as well
|
|
|
|
|
as newlines (\n).
|
|
|
|
|
|
1997-04-07 07:21:16 +00:00
|
|
|
|
* Updates to the Windows 95/NT port from Rob Tulloh (see README.W32).
|
|
|
|
|
|
|
|
|
|
* Eli Zaretskii has updated the port to 32-bit protected mode on MSDOS
|
|
|
|
|
and MS-Windows, building with the DJGPP v2 port of GNU C/C++ compiler
|
|
|
|
|
and utilities. See README.DOS for details, and direct all questions
|
|
|
|
|
concerning this port to Eli Zaretskii <eliz@is.elta.co.il> or DJ
|
|
|
|
|
Delorie <dj@delorie.com>.
|
1997-09-16 14:17:23 +00:00
|
|
|
|
|
2014-10-15 12:19:42 +00:00
|
|
|
|
* VMS-specific changes:
|
|
|
|
|
|
|
|
|
|
* John W. Eaton has updated the VMS port to support libraries and VPATH.
|
|
|
|
|
|
|
|
|
|
* The cd command is supported if it's called as $(CD). This invokes
|
|
|
|
|
the 'builtin_cd' command which changes the directory.
|
|
|
|
|
Calling 'set def' doesn't do the trick, since a sub-shell is
|
|
|
|
|
spawned for this command, the directory is changed *in this sub-shell*
|
|
|
|
|
and the sub-shell ends.
|
|
|
|
|
|
|
|
|
|
* Libraries are not supported. They were in GNU Make 3.60 but somehow I
|
|
|
|
|
didn't care porting the code. If there is enough interest, I'll do it at
|
|
|
|
|
some later time.
|
|
|
|
|
|
|
|
|
|
* The variable $^ separates files with commas instead of spaces (It's the
|
|
|
|
|
natural thing to do for VMS).
|
|
|
|
|
|
|
|
|
|
* See defaults.c for VMS default suffixes and my definitions for default
|
|
|
|
|
rules and variables.
|
|
|
|
|
|
|
|
|
|
* The shell function is not implemented yet.
|
|
|
|
|
|
|
|
|
|
* Load average routines haven't been implemented for VMS yet.
|
|
|
|
|
|
|
|
|
|
* The default include directory for including other makefiles is
|
|
|
|
|
SYS$SYSROOT:[SYSLIB] (I don't remember why I didn't just use
|
|
|
|
|
SYS$LIBRARY: instead; maybe it wouldn't work that way).
|
|
|
|
|
|
|
|
|
|
* The default makefiles make looks for are: makefile.vms, gnumakefile,
|
|
|
|
|
makefile., and gnumakefile. .
|
|
|
|
|
|
|
|
|
|
* The stat() function and handling of time stamps in VMS is broken, so I
|
|
|
|
|
replaced it with a hack in vmsfunctions.c. I will provide a full rewrite
|
|
|
|
|
somewhere in the future. Be warned, the time resolution inside make is
|
|
|
|
|
less than what vms provides. This might be a problem on the faster Alphas.
|
|
|
|
|
|
|
|
|
|
* You can use a : in a filename only if you precede it with a backslash ('\').
|
|
|
|
|
E.g.- hobbes\:[bogas.files]
|
|
|
|
|
|
|
|
|
|
* Make ignores success, informational, or warning errors (-S-, -I-, or -W-).
|
|
|
|
|
But it will stop on -E- and -F- errors. (unless you do something
|
|
|
|
|
to override this in your makefile, or whatever).
|
|
|
|
|
|
|
|
|
|
* Remote stuff isn't implemented yet.
|
|
|
|
|
|
|
|
|
|
* Multiple line DCL commands, such as "if" statements, must be put inside
|
|
|
|
|
command files. You can run a command file by using \@.
|
|
|
|
|
|
2013-05-26 17:53:21 +00:00
|
|
|
|
Version 3.75 (27 Aug 1996)
|
1995-12-12 04:54:41 +00:00
|
|
|
|
|
|
|
|
|
* The directory messages printed by `-w' and implicitly in sub-makes,
|
|
|
|
|
are now omitted if Make runs no commands and has no other messages to print.
|
1996-03-01 17:00:57 +00:00
|
|
|
|
|
|
|
|
|
* Make now detects files that for whatever reason have modification times
|
|
|
|
|
in the future and gives an error. Files with such impossible timestamps
|
|
|
|
|
can result from unsynchronized clocks, or archived distributions
|
|
|
|
|
containing bogus timestamps; they confuse Make's dependency engine
|
|
|
|
|
thoroughly.
|
1996-05-09 17:24:04 +00:00
|
|
|
|
|
|
|
|
|
* The new directive `sinclude' is now recognized as another name for
|
|
|
|
|
`-include', for compatibility with some other Makes.
|
1996-05-09 18:40:55 +00:00
|
|
|
|
|
|
|
|
|
* Aaron Digulla has contributed a port to AmigaDOS. See README.Amiga for
|
|
|
|
|
details, and direct all Amiga-related questions to <digulla@fh-konstanz.de>.
|
1996-05-27 00:58:20 +00:00
|
|
|
|
|
|
|
|
|
* Rob Tulloh of Tivoli Systems has contributed a port to Windows NT or 95.
|
1997-04-07 07:21:16 +00:00
|
|
|
|
See README.W32 for details, and direct all Windows-related questions to
|
1996-05-27 00:58:20 +00:00
|
|
|
|
<rob_tulloh@tivoli.com>.
|
2014-10-15 12:19:42 +00:00
|
|
|
|
|
|
|
|
|
* VMS-specific changes:
|
|
|
|
|
|
|
|
|
|
* Lots of default settings are adapted for VMS. See default.c.
|
|
|
|
|
|
|
|
|
|
* Long command lines are now converted to command files.
|
|
|
|
|
|
|
|
|
|
* Comma (',') as a separator is now allowed. See makefile.vms for an example.
|
1995-12-12 04:54:41 +00:00
|
|
|
|
|
2013-05-26 17:53:21 +00:00
|
|
|
|
Version 3.73 (05 Apr 1995)
|
1995-03-07 23:44:43 +00:00
|
|
|
|
|
|
|
|
|
* Converted to use Autoconf version 2, so `configure' has some new options.
|
|
|
|
|
See INSTALL for details.
|
|
|
|
|
|
|
|
|
|
* You can now send a SIGUSR1 signal to Make to toggle printing of debugging
|
1995-12-12 04:55:06 +00:00
|
|
|
|
output enabled by -d, at any time during the run.
|
1995-03-07 23:44:43 +00:00
|
|
|
|
|
2013-05-26 17:53:21 +00:00
|
|
|
|
Version 3.72 (04 Nov 1994)
|
1995-03-07 23:44:43 +00:00
|
|
|
|
|
|
|
|
|
* DJ Delorie has ported Make to MS-DOS using the GO32 extender.
|
|
|
|
|
He is maintaining the DOS port, not the GNU Make maintainer;
|
|
|
|
|
please direct bugs and questions for DOS to <djgpp@sun.soe.clarkson.edu>.
|
1996-07-19 21:43:36 +00:00
|
|
|
|
MS-DOS binaries are available for FTP from ftp.simtel.net in
|
|
|
|
|
/pub/simtelnet/gnu/djgpp/.
|
1995-03-07 23:44:43 +00:00
|
|
|
|
|
|
|
|
|
* The `MAKEFLAGS' variable (in the environment or in a makefile) can now
|
|
|
|
|
contain variable definitions itself; these are treated just like
|
2007-11-04 21:54:00 +00:00
|
|
|
|
command line variable definitions. Make will automatically insert any
|
1995-03-07 23:44:43 +00:00
|
|
|
|
variable definitions from the environment value of `MAKEFLAGS' or from
|
|
|
|
|
the command line, into the `MAKEFLAGS' value exported to children. The
|
|
|
|
|
`MAKEOVERRIDES' variable previously included in the value of `$(MAKE)'
|
|
|
|
|
for sub-makes is now included in `MAKEFLAGS' instead. As before, you can
|
|
|
|
|
reset `MAKEOVERRIDES' in your makefile to avoid putting all the variables
|
|
|
|
|
in the environment when its size is limited.
|
|
|
|
|
|
|
|
|
|
* If `.DELETE_ON_ERROR' appears as a target, Make will delete the target of
|
2007-11-04 21:54:00 +00:00
|
|
|
|
a rule if it has changed when its recipe exits with a nonzero status,
|
|
|
|
|
just as when the recipe gets a signal.
|
1995-03-07 23:44:43 +00:00
|
|
|
|
|
|
|
|
|
* The automatic variable `$+' is new. It lists all the dependencies like
|
|
|
|
|
`$^', but preserves duplicates listed in the makefile. This is useful
|
|
|
|
|
for linking rules, where library files sometimes need to be listed twice
|
|
|
|
|
in the link order.
|
|
|
|
|
|
|
|
|
|
* You can now specify the `.IGNORE' and `.SILENT' special targets with
|
|
|
|
|
dependencies to limit their effects to those files. If a file appears as
|
|
|
|
|
a dependency of `.IGNORE', then errors will be ignored while running the
|
2007-11-04 21:54:00 +00:00
|
|
|
|
recipe to update that file. Likewise if a file appears as a dependency
|
|
|
|
|
of `.SILENT', then the recipe to update that file will not be printed
|
|
|
|
|
before it is run. (This change was made to conform to POSIX.2.)
|
1995-03-07 23:44:43 +00:00
|
|
|
|
|
2013-05-26 17:53:21 +00:00
|
|
|
|
Version 3.71 (21 May 1994)
|
1995-03-07 23:44:43 +00:00
|
|
|
|
|
|
|
|
|
* The automatic variables `$(@D)', `$(%D)', `$(*D)', `$(<D)', `$(?D)', and
|
|
|
|
|
`$(^D)' now omit the trailing slash from the directory name. (This change
|
|
|
|
|
was made to comply with POSIX.2.)
|
|
|
|
|
|
|
|
|
|
* The source distribution now includes the Info files for the Make manual.
|
|
|
|
|
There is no longer a separate distribution containing Info and DVI files.
|
|
|
|
|
|
|
|
|
|
* You can now set the variables `binprefix' and/or `manprefix' in
|
2023-01-01 21:25:39 +00:00
|
|
|
|
Makefile.in (or on the command line when installing) to install GNU Make
|
1995-03-07 23:44:43 +00:00
|
|
|
|
under a name other than `make' (i.e., ``make binprefix=g install''
|
2023-01-01 21:25:39 +00:00
|
|
|
|
installs GNU Make as `gmake').
|
1995-03-07 23:44:43 +00:00
|
|
|
|
|
|
|
|
|
* The built-in Texinfo rules use the new variables `TEXI2DVI_FLAGS' for
|
|
|
|
|
flags to the `texi2dvi' script, and `MAKEINFO_FLAGS' for flags to the
|
|
|
|
|
Makeinfo program.
|
|
|
|
|
|
|
|
|
|
* The exit status of Make when it runs into errors is now 2 instead of 1.
|
|
|
|
|
The exit status is 1 only when using -q and some target is not up to date.
|
|
|
|
|
(This change was made to comply with POSIX.2.)
|
|
|
|
|
|
2013-05-26 17:53:21 +00:00
|
|
|
|
Version 3.70 (03 Jan 1994)
|
1995-03-07 23:44:43 +00:00
|
|
|
|
|
|
|
|
|
* It is no longer a fatal error to have a NUL character in a makefile.
|
|
|
|
|
You should never put a NUL in a makefile because it can have strange
|
|
|
|
|
results, but otherwise empty lines full of NULs (such as produced by
|
|
|
|
|
the `xmkmf' program) will always work fine.
|
|
|
|
|
|
|
|
|
|
* The error messages for nonexistent included makefiles now refer to the
|
|
|
|
|
makefile name and line number where the `include' appeared, so Emacs's
|
|
|
|
|
C-x ` command takes you there (in case it's a typo you need to fix).
|
|
|
|
|
|
2013-05-26 17:53:21 +00:00
|
|
|
|
Version 3.69 (07 Nov 1993)
|
1995-03-07 23:44:43 +00:00
|
|
|
|
|
|
|
|
|
* Implicit rule search for archive member references is now done in the
|
|
|
|
|
opposite order from previous versions: the whole target name `LIB(MEM)'
|
|
|
|
|
first, and just the member name and parentheses `(MEM)' second.
|
|
|
|
|
|
|
|
|
|
* Make now gives an error for an unterminated variable or function reference.
|
|
|
|
|
For example, `$(foo' with no matching `)' or `${bar' with no matching `}'.
|
|
|
|
|
|
|
|
|
|
* The new default variable `MAKE_VERSION' gives the version number of
|
|
|
|
|
Make, and a string describing the remote job support compiled in (if any).
|
|
|
|
|
Thus the value (in this release) is something like `3.69' or `3.69-Customs'.
|
|
|
|
|
|
2007-11-04 21:54:00 +00:00
|
|
|
|
* Commands in an invocation of the `shell' function are no longer run
|
|
|
|
|
with a modified environment like recipes are. As in versions before
|
1995-03-07 23:44:43 +00:00
|
|
|
|
3.68, they now run with the environment that `make' started with. We
|
|
|
|
|
have reversed the change made in version 3.68 because it turned out to
|
|
|
|
|
cause a paradoxical situation in cases like:
|
|
|
|
|
|
2014-04-08 22:25:27 +00:00
|
|
|
|
export variable = $(shell echo value)
|
1995-03-07 23:44:43 +00:00
|
|
|
|
|
2007-11-04 21:54:00 +00:00
|
|
|
|
When Make attempted to put this variable in the environment for a
|
|
|
|
|
recipe, it would try expand the value by running the shell command
|
1995-03-07 23:44:43 +00:00
|
|
|
|
`echo value'. In version 3.68, because it constructed an environment
|
|
|
|
|
for that shell command in the same way, Make would begin to go into an
|
|
|
|
|
infinite loop and then get a fatal error when it detected the loop.
|
|
|
|
|
|
2007-11-04 21:54:00 +00:00
|
|
|
|
* The recipe given for `.DEFAULT' is now used for phony targets with no
|
|
|
|
|
recipe.
|
1995-03-07 23:44:43 +00:00
|
|
|
|
|
2013-05-26 17:53:21 +00:00
|
|
|
|
Version 3.68 (28 Jul 1993)
|
1995-03-07 23:44:43 +00:00
|
|
|
|
|
|
|
|
|
* You can list several archive member names inside parenthesis:
|
|
|
|
|
`lib(mem1 mem2 mem3)' is equivalent to `lib(mem1) lib(mem2) lib(mem3)'.
|
|
|
|
|
|
|
|
|
|
* You can use wildcards inside archive member references. For example,
|
|
|
|
|
`lib(*.o)' expands to all existing members of `lib' whose names end in
|
|
|
|
|
`.o' (e.g. `lib(a.o) lib(b.o)'); `*.a(*.o)' expands to all such members
|
|
|
|
|
of all existing files whose names end in `.a' (e.g. `foo.a(a.o)
|
|
|
|
|
foo.a(b.o) bar.a(c.o) bar.a(d.o)'.
|
|
|
|
|
|
|
|
|
|
* A suffix rule `.X.a' now produces two pattern rules:
|
2014-04-08 22:25:27 +00:00
|
|
|
|
(%.o): %.X # Previous versions produced only this.
|
|
|
|
|
%.a: %.X # Now produces this as well, just like other suffixes.
|
1995-03-07 23:44:43 +00:00
|
|
|
|
|
|
|
|
|
* The new flag `--warn-undefined-variables' says to issue a warning message
|
|
|
|
|
whenever Make expands a reference to an undefined variable.
|
|
|
|
|
|
|
|
|
|
* The new `-include' directive is just like `include' except that there is
|
|
|
|
|
no error (not even a warning) for a nonexistent makefile.
|
|
|
|
|
|
|
|
|
|
* Commands in an invocation of the `shell' function are now run with a
|
2007-11-04 21:54:00 +00:00
|
|
|
|
modified environment like recipes are, so you can use `export' et al
|
|
|
|
|
to set up variables for them. They used to run with the environment
|
1995-03-07 23:44:43 +00:00
|
|
|
|
that `make' started with.
|
|
|
|
|
|
2013-05-26 17:53:21 +00:00
|
|
|
|
Version 3.66 (21 May 1993)
|
1995-03-07 23:44:43 +00:00
|
|
|
|
|
|
|
|
|
* `make --version' (or `make -v') now exits immediately after printing
|
|
|
|
|
the version number.
|
|
|
|
|
|
2013-05-26 17:53:21 +00:00
|
|
|
|
Version 3.65 (09 May 1993)
|
1995-03-07 23:44:43 +00:00
|
|
|
|
|
|
|
|
|
* Make now supports long-named members in `ar' archive files.
|
|
|
|
|
|
2013-05-26 17:53:21 +00:00
|
|
|
|
Version 3.64 (21 Apr 1993)
|
1995-03-07 23:44:43 +00:00
|
|
|
|
|
|
|
|
|
* Make now supports the `+=' syntax for a variable definition which appends
|
|
|
|
|
to the variable's previous value. See the section `Appending More Text
|
|
|
|
|
to Variables' in the manual for full details.
|
|
|
|
|
|
|
|
|
|
* The new option `--no-print-directory' inhibits the `-w' or
|
|
|
|
|
`--print-directory' feature. Make turns on `--print-directory'
|
|
|
|
|
automatically if you use `-C' or `--directory', and in sub-makes; some
|
|
|
|
|
users have found this behavior undesirable.
|
|
|
|
|
|
|
|
|
|
* The built-in implicit rules now support the alternative extension
|
|
|
|
|
`.txinfo' for Texinfo files, just like `.texinfo' and `.texi'.
|
|
|
|
|
|
2013-05-26 17:53:21 +00:00
|
|
|
|
Version 3.63 (22 Jan 1993)
|
1995-03-07 23:44:43 +00:00
|
|
|
|
|
|
|
|
|
* Make now uses a standard GNU `configure' script. See the new file
|
|
|
|
|
INSTALL for the new (and much simpler) installation procedure.
|
|
|
|
|
|
|
|
|
|
* There is now a shell script to build Make the first time, if you have no
|
|
|
|
|
other `make' program. `build.sh' is created by `configure'; see README.
|
|
|
|
|
|
|
|
|
|
* GNU Make now completely conforms to the POSIX.2 specification for `make'.
|
|
|
|
|
|
|
|
|
|
* Elements of the `$^' and `$?' automatic variables that are archive
|
|
|
|
|
member references now list only the member name, as in Unix and POSIX.2.
|
|
|
|
|
|
|
|
|
|
* You should no longer ever need to specify the `-w' switch, which prints
|
|
|
|
|
the current directory before and after Make runs. The `-C' switch to
|
|
|
|
|
change directory, and recursive use of Make, now set `-w' automatically.
|
|
|
|
|
|
|
|
|
|
* Multiple double-colon rules for the same target will no longer have their
|
2007-11-04 21:54:00 +00:00
|
|
|
|
recipes run simultaneously under -j, as this could result in the two
|
|
|
|
|
recipes trying to change the file at the same time and interfering with
|
1995-03-07 23:44:43 +00:00
|
|
|
|
one another.
|
|
|
|
|
|
|
|
|
|
* The `SHELL' variable is now never taken from the environment.
|
|
|
|
|
Each makefile that wants a shell other than the default (/bin/sh) must
|
|
|
|
|
set SHELL itself. SHELL is always exported to child processes.
|
|
|
|
|
This change was made for compatibility with POSIX.2.
|
|
|
|
|
|
|
|
|
|
* Make now accepts long options. There is now an informative usage message
|
|
|
|
|
that tells you what all the options are and what they do. Try `make --help'.
|
|
|
|
|
|
|
|
|
|
* There are two new directives: `export' and `unexport'. All variables are
|
2007-11-04 21:54:00 +00:00
|
|
|
|
no longer automatically put into the environments of the recipe lines that
|
1995-03-07 23:44:43 +00:00
|
|
|
|
Make runs. Instead, only variables specified on the command line or in
|
|
|
|
|
the environment are exported by default. To export others, use:
|
2014-04-08 22:25:27 +00:00
|
|
|
|
export VARIABLE
|
1995-03-07 23:44:43 +00:00
|
|
|
|
or you can define variables with:
|
2014-04-08 22:25:27 +00:00
|
|
|
|
export VARIABLE = VALUE
|
1995-03-07 23:44:43 +00:00
|
|
|
|
or:
|
2014-04-08 22:25:27 +00:00
|
|
|
|
export VARIABLE := VALUE
|
1995-03-07 23:44:43 +00:00
|
|
|
|
You can use just:
|
2014-04-08 22:25:27 +00:00
|
|
|
|
export
|
1995-03-07 23:44:43 +00:00
|
|
|
|
or:
|
2014-04-08 22:25:27 +00:00
|
|
|
|
.EXPORT_ALL_VARIABLES:
|
1995-03-07 23:44:43 +00:00
|
|
|
|
to get the old behavior. See the node `Variables/Recursion' in the manual
|
|
|
|
|
for a full description.
|
|
|
|
|
|
2007-11-04 21:54:00 +00:00
|
|
|
|
* The recipe from the `.DEFAULT' special target is only applied to
|
|
|
|
|
targets which have no rules at all, not all targets with no recipe.
|
1995-03-07 23:44:43 +00:00
|
|
|
|
This change was made for compatibility with Unix make.
|
|
|
|
|
|
|
|
|
|
* All fatal error messages now contain `***', so they are easy to find in
|
|
|
|
|
compilation logs.
|
|
|
|
|
|
|
|
|
|
* Dependency file names like `-lNAME' are now replaced with the actual file
|
|
|
|
|
name found, as with files found by normal directory search (VPATH).
|
|
|
|
|
The library file `libNAME.a' may now be found in the current directory,
|
|
|
|
|
which is checked before VPATH; the standard set of directories (/lib,
|
|
|
|
|
/usr/lib, /usr/local/lib) is now checked last.
|
|
|
|
|
See the node `Libraries/Search' in the manual for full details.
|
|
|
|
|
|
|
|
|
|
* A single `include' directive can now specify more than one makefile to
|
|
|
|
|
include, like this:
|
2014-04-08 22:25:27 +00:00
|
|
|
|
include file1 file2
|
1995-03-07 23:44:43 +00:00
|
|
|
|
You can also use shell file name patterns in an `include' directive:
|
2014-04-08 22:25:27 +00:00
|
|
|
|
include *.mk
|
1995-03-07 23:44:43 +00:00
|
|
|
|
|
|
|
|
|
* The default directories to search for included makefiles, and for
|
|
|
|
|
libraries specified with `-lNAME', are now set by configuration.
|
|
|
|
|
|
|
|
|
|
* You can now use blanks as well as colons to separate the directories in a
|
|
|
|
|
search path for the `vpath' directive or the `VPATH' variable.
|
|
|
|
|
|
|
|
|
|
* You can now use variables and functions in the left hand side of a
|
|
|
|
|
variable assignment, as in "$(foo)bar = value".
|
|
|
|
|
|
|
|
|
|
* The `MAKE' variable is always defined as `$(MAKE_COMMAND) $(MAKEOVERRIDES)'.
|
|
|
|
|
The `MAKE_COMMAND' variable is now defined to the name with which make
|
|
|
|
|
was invoked.
|
|
|
|
|
|
|
|
|
|
* The built-in rules for C++ compilation now use the variables `$(CXX)' and
|
|
|
|
|
`$(CXXFLAGS)' instead of `$(C++)' and `$(C++FLAGS)'. The old names had
|
|
|
|
|
problems with shells that cannot have `+' in environment variable names.
|
|
|
|
|
|
|
|
|
|
* The value of a recursively expanded variable is now expanded when putting
|
|
|
|
|
it into the environment for child processes. This change was made for
|
|
|
|
|
compatibility with Unix make.
|
|
|
|
|
|
|
|
|
|
* A rule with no targets before the `:' is now accepted and ignored.
|
|
|
|
|
This change was made for compatibility with SunOS 4 make.
|
|
|
|
|
We do not recommend that you write your makefiles to take advantage of this.
|
|
|
|
|
|
|
|
|
|
* The `-I' switch can now be used in MAKEFLAGS, and are put there
|
|
|
|
|
automatically just like other switches.
|
|
|
|
|
|
|
|
|
|
Version 3.61
|
|
|
|
|
|
|
|
|
|
* Built-in rules for C++ source files with the `.C' suffix.
|
|
|
|
|
We still recommend that you use `.cc' instead.
|
|
|
|
|
|
2007-11-04 21:54:00 +00:00
|
|
|
|
* If a recipe is given too many times for a single target, the last one
|
|
|
|
|
given is used, and a warning message is printed.
|
1995-03-07 23:44:43 +00:00
|
|
|
|
|
|
|
|
|
* Error messages about makefiles are in standard GNU error format,
|
|
|
|
|
so C-x ` in Emacs works on them.
|
|
|
|
|
|
|
|
|
|
* Dependencies of pattern rules which contain no % need not actually exist
|
|
|
|
|
if they can be created (just like dependencies which do have a %).
|
|
|
|
|
|
|
|
|
|
Version 3.60
|
|
|
|
|
|
|
|
|
|
* A message is always printed when Make decides there is nothing to be done.
|
|
|
|
|
It used to be that no message was printed for top-level phony targets
|
|
|
|
|
(because "`phony' is up to date" isn't quite right). Now a different
|
|
|
|
|
message "Nothing to be done for `phony'" is printed in that case.
|
|
|
|
|
|
|
|
|
|
* Archives on AIX now supposedly work.
|
|
|
|
|
|
2007-11-04 21:54:00 +00:00
|
|
|
|
* When the recipes specified for .DEFAULT are used to update a target,
|
1995-03-07 23:44:43 +00:00
|
|
|
|
the $< automatic variable is given the same value as $@ for that target.
|
|
|
|
|
This is how Unix make behaves, and this behavior is mandated by POSIX.2.
|
|
|
|
|
|
|
|
|
|
Version 3.59
|
|
|
|
|
|
|
|
|
|
* The -n, -q, and -t options are not put in the `MAKEFLAGS' and `MFLAG'
|
|
|
|
|
variables while remaking makefiles, so recursive makes done while remaking
|
|
|
|
|
makefiles will behave properly.
|
|
|
|
|
|
|
|
|
|
* If the special target `.NOEXPORT' is specified in a makefile,
|
|
|
|
|
only variables that came from the environment and variables
|
|
|
|
|
defined on the command line are exported.
|
|
|
|
|
|
|
|
|
|
Version 3.58
|
|
|
|
|
|
|
|
|
|
* Suffix rules may have dependencies (which are ignored).
|
|
|
|
|
|
|
|
|
|
Version 3.57
|
|
|
|
|
|
|
|
|
|
* Dependencies of the form `-lLIB' are searched for as /usr/local/lib/libLIB.a
|
|
|
|
|
as well as libLIB.a in /usr/lib, /lib, the current directory, and VPATH.
|
|
|
|
|
|
|
|
|
|
Version 3.55
|
|
|
|
|
|
2007-11-04 21:54:00 +00:00
|
|
|
|
* There is now a Unix man page for GNU Make. It is certainly not a
|
|
|
|
|
replacement for the Texinfo manual, but it documents the basic
|
|
|
|
|
functionality and the switches. For full documentation, you should
|
|
|
|
|
still read the Texinfo manual. Thanks to Dennis Morse of Stanford
|
|
|
|
|
University for contributing the initial version of this.
|
1995-03-07 23:44:43 +00:00
|
|
|
|
|
2007-11-04 21:54:00 +00:00
|
|
|
|
* Variables which are defined by default (e.g., `CC') will no longer be
|
|
|
|
|
put into the environment for child processes. (If these variables are
|
|
|
|
|
reset by the environment, makefiles, or the command line, they will
|
|
|
|
|
still go into the environment.)
|
1995-03-07 23:44:43 +00:00
|
|
|
|
|
2007-11-04 21:54:00 +00:00
|
|
|
|
* Makefiles which have recipes but no dependencies (and thus are always
|
1995-03-07 23:44:43 +00:00
|
|
|
|
considered out of date and in need of remaking), will not be remade (if they
|
|
|
|
|
were being remade only because they were makefiles). This means that GNU
|
|
|
|
|
Make will no longer go into an infinite loop when fed the makefiles that
|
|
|
|
|
`imake' (necessary to build X Windows) produces.
|
|
|
|
|
|
|
|
|
|
* There is no longer a warning for using the `vpath' directive with an explicit
|
|
|
|
|
pathname (instead of a `%' pattern).
|
|
|
|
|
|
|
|
|
|
Version 3.51
|
|
|
|
|
|
|
|
|
|
* When removing intermediate files, only one `rm' command line is printed,
|
2007-11-04 21:54:00 +00:00
|
|
|
|
listing all file names.
|
1995-03-07 23:44:43 +00:00
|
|
|
|
|
|
|
|
|
* There are now automatic variables `$(^D)', `$(^F)', `$(?D)', and `$(?F)'.
|
2007-11-04 21:54:00 +00:00
|
|
|
|
These are the directory-only and file-only versions of `$^' and `$?'.
|
1995-03-07 23:44:43 +00:00
|
|
|
|
|
|
|
|
|
* Library dependencies given as `-lNAME' will use "libNAME.a" in the current
|
2007-11-04 21:54:00 +00:00
|
|
|
|
directory if it exists.
|
1995-03-07 23:44:43 +00:00
|
|
|
|
|
|
|
|
|
* The automatic variable `$($/)' is no longer defined.
|
|
|
|
|
|
2007-11-04 21:54:00 +00:00
|
|
|
|
* Leading `+' characters on a recipe line make that line be executed even
|
|
|
|
|
under -n, -t, or -q (as if the line contained `$(MAKE)').
|
1995-03-07 23:44:43 +00:00
|
|
|
|
|
2007-11-04 21:54:00 +00:00
|
|
|
|
* For recipe lines containing `$(MAKE)', `${MAKE}', or leading `+' characters,
|
|
|
|
|
only those lines are executed, not the entire recipe.
|
|
|
|
|
(This is how Unix make behaves for lines containing `$(MAKE)' or `${MAKE}'.)
|
1995-03-07 23:44:43 +00:00
|
|
|
|
|
|
|
|
|
Version 3.50
|
|
|
|
|
|
|
|
|
|
* Filenames in rules will now have ~ and ~USER expanded.
|
|
|
|
|
|
|
|
|
|
* The `-p' output has been changed so it can be used as a makefile.
|
2007-11-04 21:54:00 +00:00
|
|
|
|
(All information that isn't specified by makefiles is prefaced with comment
|
|
|
|
|
characters.)
|
1995-03-07 23:44:43 +00:00
|
|
|
|
|
|
|
|
|
Version 3.49
|
|
|
|
|
|
|
|
|
|
* The % character can be quoted with backslash in implicit pattern rules,
|
2007-11-04 21:54:00 +00:00
|
|
|
|
static pattern rules, `vpath' directives, and `patsubst', `filter', and
|
|
|
|
|
`filter-out' functions. A warning is issued if a `vpath' directive's
|
|
|
|
|
pattern contains no %.
|
1995-03-07 23:44:43 +00:00
|
|
|
|
|
|
|
|
|
* The `wildcard' variable expansion function now expands ~ and ~USER.
|
|
|
|
|
|
2007-11-04 21:54:00 +00:00
|
|
|
|
* Messages indicating failed recipe lines now contain the target name:
|
2014-04-08 22:25:27 +00:00
|
|
|
|
make: *** [target] Error 1
|
1995-03-07 23:44:43 +00:00
|
|
|
|
|
|
|
|
|
* The `-p' output format has been changed somewhat to look more like
|
2007-11-04 21:54:00 +00:00
|
|
|
|
makefile rules and to give all information that Make has about files.
|
1995-03-07 23:44:43 +00:00
|
|
|
|
|
|
|
|
|
Version 3.48
|
|
|
|
|
|
|
|
|
|
Version 3.47
|
|
|
|
|
|
|
|
|
|
* The `-l' switch with no argument removes any previous load-average limit.
|
|
|
|
|
|
|
|
|
|
* When the `-w' switch is in effect, and Make has updated makefiles,
|
2007-11-04 21:54:00 +00:00
|
|
|
|
it will write a `Leaving directory' message before re-executing itself.
|
|
|
|
|
This makes the `directory change tracking' changes to Emacs's compilation
|
|
|
|
|
commands work properly.
|
1995-03-07 23:44:43 +00:00
|
|
|
|
|
|
|
|
|
Version 3.46
|
|
|
|
|
|
|
|
|
|
* The automatic variable `$*' is now defined for explicit rules,
|
2007-11-04 21:54:00 +00:00
|
|
|
|
as it is in Unix make.
|
1995-03-07 23:44:43 +00:00
|
|
|
|
|
|
|
|
|
Version 3.45
|
|
|
|
|
|
|
|
|
|
* The `-j' switch is now put in the MAKEFLAGS and MFLAGS variables when
|
2007-11-04 21:54:00 +00:00
|
|
|
|
specified without an argument (indicating infinite jobs).
|
|
|
|
|
The `-l' switch is not always put in the MAKEFLAGS and MFLAGS variables.
|
1995-03-07 23:44:43 +00:00
|
|
|
|
|
2007-11-04 21:54:00 +00:00
|
|
|
|
* Make no longer checks hashed directories after running recipes.
|
|
|
|
|
The behavior implemented in 3.41 caused too much slowdown.
|
1995-03-07 23:44:43 +00:00
|
|
|
|
|
|
|
|
|
Version 3.44
|
|
|
|
|
|
|
|
|
|
* A dependency is NOT considered newer than its dependent if
|
2007-11-04 21:54:00 +00:00
|
|
|
|
they have the same modification time. The behavior implemented
|
|
|
|
|
in 3.43 conflicts with RCS.
|
1995-03-07 23:44:43 +00:00
|
|
|
|
|
|
|
|
|
Version 3.43
|
|
|
|
|
|
|
|
|
|
* Dependency loops are no longer fatal errors.
|
|
|
|
|
|
|
|
|
|
* A dependency is considered newer than its dependent if
|
2007-11-04 21:54:00 +00:00
|
|
|
|
they have the same modification time.
|
1995-03-07 23:44:43 +00:00
|
|
|
|
|
|
|
|
|
Version 3.42
|
|
|
|
|
|
|
|
|
|
* The variables F77 and F77FLAGS are now set by default to $(FC) and
|
2007-11-04 21:54:00 +00:00
|
|
|
|
$(FFLAGS). Makefiles designed for System V make may use these variables in
|
|
|
|
|
explicit rules and expect them to be set. Unfortunately, there is no way to
|
|
|
|
|
make setting these affect the Fortran implicit rules unless FC and FFLAGS
|
|
|
|
|
are not used (and these are used by BSD make).
|
1995-03-07 23:44:43 +00:00
|
|
|
|
|
|
|
|
|
Version 3.41
|
|
|
|
|
|
2007-11-04 21:54:00 +00:00
|
|
|
|
* Make now checks to see if its hashed directories are changed by recipes.
|
|
|
|
|
Other makes that hash directories (Sun, 4.3 BSD) don't do this.
|
1995-03-07 23:44:43 +00:00
|
|
|
|
|
|
|
|
|
Version 3.39
|
|
|
|
|
|
|
|
|
|
* The `shell' function no longer captures standard error output.
|
|
|
|
|
|
|
|
|
|
Version 3.32
|
|
|
|
|
|
|
|
|
|
* A file beginning with a dot can be the default target if it also contains
|
2007-11-04 21:54:00 +00:00
|
|
|
|
a slash (e.g., `../bin/foo'). (Unix make allows this as well.)
|
1995-03-07 23:44:43 +00:00
|
|
|
|
|
|
|
|
|
Version 3.31
|
|
|
|
|
|
|
|
|
|
* Archive member names are truncated to 15 characters.
|
|
|
|
|
|
|
|
|
|
* Yet more USG stuff.
|
|
|
|
|
|
|
|
|
|
* Minimal support for Microport System V (a 16-bit machine and a
|
2007-11-04 21:54:00 +00:00
|
|
|
|
brain-damaged compiler). This has even lower priority than other USG
|
|
|
|
|
support, so if it gets beyond trivial, I will take it out completely.
|
1995-03-07 23:44:43 +00:00
|
|
|
|
|
|
|
|
|
* Revamped default implicit rules (not much visible change).
|
|
|
|
|
|
|
|
|
|
* The -d and -p options can come from the environment.
|
|
|
|
|
|
|
|
|
|
Version 3.30
|
|
|
|
|
|
|
|
|
|
* Improved support for USG and HPUX (hopefully).
|
|
|
|
|
|
|
|
|
|
* A variable reference like `$(foo:a=b)', if `a' contains a `%', is
|
2007-11-04 21:54:00 +00:00
|
|
|
|
equivalent to `$(patsubst a,b,$(foo))'.
|
1995-03-07 23:44:43 +00:00
|
|
|
|
|
2007-11-04 21:54:00 +00:00
|
|
|
|
* Defining .DEFAULT with no deps or recipe clears its recipe.
|
1995-03-07 23:44:43 +00:00
|
|
|
|
|
2007-11-04 21:54:00 +00:00
|
|
|
|
* New default implicit rules for .S (cpp, then as), and .sh (copy and
|
|
|
|
|
make executable). All default implicit rules that use cpp (even
|
|
|
|
|
indirectly), use $(CPPFLAGS).
|
1995-03-07 23:44:43 +00:00
|
|
|
|
|
|
|
|
|
Version 3.29
|
|
|
|
|
|
|
|
|
|
* Giving the -j option with no arguments gives you infinite jobs.
|
|
|
|
|
|
|
|
|
|
Version 3.28
|
|
|
|
|
|
|
|
|
|
* New option: "-l LOAD" says not to start any new jobs while others are
|
2007-11-04 21:54:00 +00:00
|
|
|
|
running if the load average is not below LOAD (a floating-point number).
|
1995-03-07 23:44:43 +00:00
|
|
|
|
|
|
|
|
|
* There is support in place for implementations of remote command execution
|
2007-11-04 21:54:00 +00:00
|
|
|
|
in Make. See the file remote.c.
|
1995-03-07 23:44:43 +00:00
|
|
|
|
|
|
|
|
|
Version 3.26
|
|
|
|
|
|
|
|
|
|
* No more than 10 directories will be kept open at once.
|
2007-11-04 21:54:00 +00:00
|
|
|
|
(This number can be changed by redefining MAX_OPEN_DIRECTORIES in dir.c.)
|
1995-03-07 23:44:43 +00:00
|
|
|
|
|
|
|
|
|
Version 3.25
|
|
|
|
|
|
|
|
|
|
* Archive files will have their modification times recorded before doing
|
2007-11-04 21:54:00 +00:00
|
|
|
|
anything that might change their modification times by updating an archive
|
|
|
|
|
member.
|
1995-03-07 23:44:43 +00:00
|
|
|
|
|
|
|
|
|
Version 3.20
|
|
|
|
|
|
|
|
|
|
* The `MAKELEVEL' variable is defined for use by makefiles.
|
|
|
|
|
|
|
|
|
|
Version 3.19
|
|
|
|
|
|
|
|
|
|
* The recursion level indications in error messages are much shorter than
|
2007-11-04 21:54:00 +00:00
|
|
|
|
they were in version 3.14.
|
1995-03-07 23:44:43 +00:00
|
|
|
|
|
|
|
|
|
Version 3.18
|
|
|
|
|
|
|
|
|
|
* Leading spaces before directives are ignored (as documented).
|
|
|
|
|
|
|
|
|
|
* Included makefiles can determine the default goal target.
|
2007-11-04 21:54:00 +00:00
|
|
|
|
(System V Make does it this way, so we are being compatible).
|
1995-03-07 23:44:43 +00:00
|
|
|
|
|
|
|
|
|
Version 3.14.
|
|
|
|
|
|
|
|
|
|
* Variables that are defaults built into Make will not be put in the
|
2007-11-04 21:54:00 +00:00
|
|
|
|
environment for children. This just saves some environment space and,
|
|
|
|
|
except under -e, will be transparent to sub-makes.
|
1995-03-07 23:44:43 +00:00
|
|
|
|
|
|
|
|
|
* Error messages from sub-makes will indicate the level of recursion.
|
|
|
|
|
|
|
|
|
|
* Hopefully some speed-up for large directories due to a change in the
|
2007-11-04 21:54:00 +00:00
|
|
|
|
directory hashing scheme.
|
1995-03-07 23:44:43 +00:00
|
|
|
|
|
|
|
|
|
* One child will always get a standard input that is usable.
|
|
|
|
|
|
|
|
|
|
* Default makefiles that don't exist will be remade and read in.
|
|
|
|
|
|
|
|
|
|
Version 3.13.
|
|
|
|
|
|
|
|
|
|
* Count parentheses inside expansion function calls so you can
|
2007-11-04 21:54:00 +00:00
|
|
|
|
have nested calls: `$(sort $(foreach x,a b,$(x)))'.
|
1995-03-07 23:44:43 +00:00
|
|
|
|
|
|
|
|
|
Version 3.12.
|
|
|
|
|
|
|
|
|
|
* Several bug fixes, including USG and Sun386i support.
|
|
|
|
|
|
|
|
|
|
* `shell' function to expand shell commands a la `
|
|
|
|
|
|
|
|
|
|
* If the `-d' flag is given, version information will be printed.
|
|
|
|
|
|
|
|
|
|
* The `-c' option has been renamed to `-C' for compatibility with tar.
|
|
|
|
|
|
|
|
|
|
* The `-p' option no longer inhibits other normal operation.
|
|
|
|
|
|
|
|
|
|
* Makefiles will be updated and re-read if necessary.
|
|
|
|
|
|
2007-11-04 21:54:00 +00:00
|
|
|
|
* Can now run several recipes at once (parallelism), -j option.
|
1995-03-07 23:44:43 +00:00
|
|
|
|
|
|
|
|
|
* Error messages will contain the level of Make recursion, if any.
|
|
|
|
|
|
|
|
|
|
* The `MAKEFLAGS' and `MFLAGS' variables will be scanned for options after
|
2007-11-04 21:54:00 +00:00
|
|
|
|
makefiles are read.
|
1995-03-07 23:44:43 +00:00
|
|
|
|
|
2007-11-04 21:54:00 +00:00
|
|
|
|
* A double-colon rule with no dependencies will always have its recipe run.
|
|
|
|
|
(This is how both the BSD and System V versions of Make do it.)
|
1995-03-07 23:44:43 +00:00
|
|
|
|
|
|
|
|
|
Version 3.05
|
|
|
|
|
|
|
|
|
|
(Changes from versions 1 through 3.05 were never recorded. Sorry.)
|
|
|
|
|
|
2006-02-11 19:02:21 +00:00
|
|
|
|
-------------------------------------------------------------------------------
|
2024-01-06 22:55:04 +00:00
|
|
|
|
Copyright (C) 1988-2024 Free Software Foundation, Inc.
|
2012-01-16 02:29:20 +00:00
|
|
|
|
This file is part of GNU Make.
|
2006-02-20 03:34:02 +00:00
|
|
|
|
|
2006-02-11 19:02:21 +00:00
|
|
|
|
GNU Make is free software; you can redistribute it and/or modify it under the
|
|
|
|
|
terms of the GNU General Public License as published by the Free Software
|
2007-07-04 19:35:15 +00:00
|
|
|
|
Foundation; either version 3 of the License, or (at your option) any later
|
|
|
|
|
version.
|
1995-03-07 23:44:43 +00:00
|
|
|
|
|
2006-02-11 19:02:21 +00:00
|
|
|
|
GNU Make is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
|
|
|
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
|
|
|
|
|
A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
1995-03-07 23:44:43 +00:00
|
|
|
|
|
2006-02-11 19:02:21 +00:00
|
|
|
|
You should have received a copy of the GNU General Public License along with
|
2022-10-18 18:36:40 +00:00
|
|
|
|
this program. If not, see <https://www.gnu.org/licenses/>.
|