diff options
author | Mike McGreevy <mamcgree@hdfgroup.org> | 2011-04-14 19:45:57 (GMT) |
---|---|---|
committer | Mike McGreevy <mamcgree@hdfgroup.org> | 2011-04-14 19:45:57 (GMT) |
commit | a45c7424b2d849c8876d4681d0815367f6e5c7f6 (patch) | |
tree | 6001ce9ed8c8cb0d54137728887ae0cc94f1e306 /release_docs/RELEASE.txt | |
parent | c62953eb427d3db8f147dd0c618cdb604235b42a (diff) | |
download | hdf5-a45c7424b2d849c8876d4681d0815367f6e5c7f6.zip hdf5-a45c7424b2d849c8876d4681d0815367f6e5c7f6.tar.gz hdf5-a45c7424b2d849c8876d4681d0815367f6e5c7f6.tar.bz2 |
[svn-r20502] Purpose:
Add "silent make" mode configure option.
Description:
Automake 1.11 has a new option available that allows for a
silent make mode. This functionality needs to be explicitly
enabled in configure.in via the use of the automake macro
AM_SILENT_RULES, which is what this commit is adding.
This introduces a new configure option:
--{en|dis}able-silent-rules
This option is on by default, and simplies compile and link
line outputs when building the library. Disabling this option
will print full "verbose" output (i.e., full compile and
linking lines for each target).
Tested:
This was tested on jam & h5committested
Diffstat (limited to 'release_docs/RELEASE.txt')
-rw-r--r-- | release_docs/RELEASE.txt | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/release_docs/RELEASE.txt b/release_docs/RELEASE.txt index d060630..288b7f1 100644 --- a/release_docs/RELEASE.txt +++ b/release_docs/RELEASE.txt @@ -39,6 +39,12 @@ New Features Configuration: ------------- + - Configure now generates Makefiles that build in "silent make mode" + by default in which compile and link lines are significantly + simplified for clarity. To override this and view actual compile and + link lines during building, the --disable-silent-rules flag can be used + at configure time, or the 'make' command can be followed by V=1, to + indicate a "verbose" make. (MAM - 2011/4/14). - Added mpicc and mpif90 as the default C and Fortran compilers for Linux systems when --enable-parallel is specified but no $CC or $FC is defined. (AKC - 2011/2/7) |