diff options
author | Richard Biener <rguenther@suse.de> | 2014-10-23 09:14:48 +0000 |
---|---|---|
committer | Richard Biener <rguenth@gcc.gnu.org> | 2014-10-23 09:14:48 +0000 |
commit | 929315a9177368d6b8807299bc7da3ac5e1dca21 (patch) | |
tree | 7daf07426f472aacdd4be8d9e7e91f7e2d6b2a06 /gcc/Makefile.in | |
parent | 282d3a81fae765d860777a4ce65e42ea75b4fe47 (diff) | |
download | gcc-929315a9177368d6b8807299bc7da3ac5e1dca21.zip gcc-929315a9177368d6b8807299bc7da3ac5e1dca21.tar.gz gcc-929315a9177368d6b8807299bc7da3ac5e1dca21.tar.bz2 |
Makefile.def: Add libcpp build module and dependencies.
2014-10-23 Richard Biener <rguenther@suse.de>
* Makefile.def: Add libcpp build module and dependencies.
* configure.ac: Add libcpp build module.
* Makefile.in: Regenerate.
* configure: Likewise.
gcc/
* Makefile.in (BUILD_CPPLIB): Add.
(build/genmatch$(build_exeext)): Use BUILD_CPPLIB, not CPPLIB.
Drop LIBIBERTY.
From-SVN: r216579
Diffstat (limited to 'gcc/Makefile.in')
-rw-r--r-- | gcc/Makefile.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/Makefile.in b/gcc/Makefile.in index 04d2da8..c44c0fd 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -981,6 +981,7 @@ else LIBIBERTY = ../libiberty/libiberty.a BUILD_LIBIBERTY = $(build_libobjdir)/libiberty/libiberty.a endif +BUILD_CPPLIB = $(build_libobjdir)/libcpp/libcpp.a # Dependencies on the intl and portability libraries. LIBDEPS= libcommon.a $(CPPLIB) $(LIBIBERTY) $(LIBINTL_DEP) $(LIBICONV_DEP) \ @@ -2520,7 +2521,7 @@ genprog = $(genprogerr) check checksum condmd match # These programs need libs over and above what they get from the above list. build/genautomata$(build_exeext) : BUILD_LIBS += -lm -build/genmatch$(build_exeext) : $(CPPLIB) $(LIBIBERTY) \ +build/genmatch$(build_exeext) : $(BUILD_CPPLIB) \ $(BUILD_ERRORS) build/vec.o build/hash-table.o # These programs are not linked with the MD reader. |