diff options
author | Kaveh R. Ghazi <ghazi@caip.rutgers.edu> | 2008-02-06 21:51:24 +0000 |
---|---|---|
committer | Kaveh Ghazi <ghazi@gcc.gnu.org> | 2008-02-06 21:51:24 +0000 |
commit | 72fb133fcb84a0924e34916f2b9e100b0d737f61 (patch) | |
tree | 28a4bfc63d7cb6fc2d6cbb69e4ac1ca20de04444 /gcc/ada/Make-lang.in | |
parent | c64ccf4d248e2aebfa8fe021b31277d1be2fb3c7 (diff) | |
download | gcc-72fb133fcb84a0924e34916f2b9e100b0d737f61.zip gcc-72fb133fcb84a0924e34916f2b9e100b0d737f61.tar.gz gcc-72fb133fcb84a0924e34916f2b9e100b0d737f61.tar.bz2 |
re PR other/35107 (GCC unnecessarily links shared libs with xgcc, gcov, cpp, jcf-dump, etc.)
2008-02-06 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
PR other/35107
* Makefile.in (LIBS): Remove $(GMPLIBS).
(cc1-dummy, cc1): Add $(GMPLIBS).
ada:
PR other/35107
* Make-lang.in (gnat1): Add $(GMPLIBS).
cp:
PR other/35107
* Make-lang.in (cc1plus-dummy, cc1plus): Add $(GMPLIBS).
fortran:
PR other/35107
* Make-lang.in (f951): Add $(GMPLIBS).
java:
PR other/35107
* Make-lang.in (jc1): Add $(GMPLIBS).
objc:
PR other/35107
* Make-lang.in (cc1obj-dummy, cc1obj): Add $(GMPLIBS).
objcp:
PR other/35107
* Make-lang.in (cc1objplus-dummy, cc1objplus): Add $(GMPLIBS).
treelang:
PR other/35107
* Make-lang.in (tree1): Add $(GMPLIBS).
From-SVN: r132160
Diffstat (limited to 'gcc/ada/Make-lang.in')
-rw-r--r-- | gcc/ada/Make-lang.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/ada/Make-lang.in b/gcc/ada/Make-lang.in index 0784b63..4e6d3f2 100644 --- a/gcc/ada/Make-lang.in +++ b/gcc/ada/Make-lang.in @@ -290,7 +290,7 @@ TARGET_ADA_SRCS = # Since the RTL should be built with the latest compiler, remove the # stamp target in the parent directory whenever gnat1 is rebuilt gnat1$(exeext): $(TARGET_ADA_SRCS) $(GNAT1_OBJS) $(ADA_BACKEND) $(LIBDEPS) - $(GCC_LINK) -o $@ $(GNAT1_OBJS) $(ADA_BACKEND) $(ALL_CFLAGS) $(LIBS) $(SYSLIBS) + $(GCC_LINK) -o $@ $(GNAT1_OBJS) $(ADA_BACKEND) $(ALL_CFLAGS) $(LIBS) $(SYSLIBS) $(GMPLIBS) $(RM) stamp-gnatlib2 stamp-tools gnatbind$(exeext): ada/b_gnatb.o $(CONFIG_H) $(GNATBIND_OBJS) |