diff options
author | Iain Buclaw <ibuclaw@gdcproject.org> | 2019-04-12 20:13:34 +0000 |
---|---|---|
committer | Iain Buclaw <ibuclaw@gcc.gnu.org> | 2019-04-12 20:13:34 +0000 |
commit | bb50312e027994bb5260163a9c021b5444f86257 (patch) | |
tree | a54ece0354260e54a34472ff2bc81f5834fd2742 /gcc | |
parent | 41fe51dd063c2d860f12311fc65c7ad8ed8e6df5 (diff) | |
download | gcc-bb50312e027994bb5260163a9c021b5444f86257.zip gcc-bb50312e027994bb5260163a9c021b5444f86257.tar.gz gcc-bb50312e027994bb5260163a9c021b5444f86257.tar.bz2 |
libphobos: Add target-zlib to top-level configure
Removes the building of zlib from within libphobos, using instead the
libz_convenience.a library.
ChangeLog:
2019-04-12 Iain Buclaw <ibuclaw@gdcproject.org>
* configure.ac: Add target-zlib to target_libraries.
* configure: Regenerate.
gcc/ChangeLog:
2019-04-12 Iain Buclaw <ibuclaw@gdcproject.org>
* doc/install.texi: Document --with-target-system-zlib.
libphobos/ChangeLog:
2019-04-12 Iain Buclaw <ibuclaw@gdcproject.org>
* m4/druntime/libraries.m4 (DRUNTIME_LIBRARIES_ZLIB): Use
libz_convenience.a if not using system zlib.
* Makefile.in: Regenerate.
* configure: Regenerate.
* libdruntime/Makefile.in: Regenerate.
* src/Makefile.am: Remove ZLIB_CSOURCES and AM_CFLAGS.
* src/Makefile.in: Regenerate.
* testsuite/Makefile.in: Regenerate.
From-SVN: r270328
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/doc/install.texi | 12 |
2 files changed, 16 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 907c6f3..83e5954 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2019-04-12 Iain Buclaw <ibuclaw@gdcproject.org> + + * doc/install.texi: Document --with-target-system-zlib. + 2019-04-12 Martin Sebor <msebor@redhat.com> PR c/88383 diff --git a/gcc/doc/install.texi b/gcc/doc/install.texi index 3f0c421..911875f 100644 --- a/gcc/doc/install.texi +++ b/gcc/doc/install.texi @@ -2344,6 +2344,18 @@ If none of these options are specified, the library is assumed in default locations. @end table +@subheading D-Specific Options + +The following options apply to the build of the D runtime library. + +@table @code +@item --with-target-system-zlib +Use installed @samp{zlib} rather than that included with GCC@. This needs +to be available for each multilib variant, unless configured with +@option{--with-target-system-zlib=@samp{auto}} in which case the GCC@ included +@samp{zlib} is only used when the system installed library is not available. +@end table + @html <hr /> <p> |