GNU Binutils with patches for OS216
Revision | 975f45b7e103929f3ed05d7a4dc71bb5fc320810 (tree) |
---|---|
Zeit | 2020-01-15 08:25:04 |
Autor | Tom Tromey <tom@trom...> |
Commiter | Tom Tromey |
Don't link gdb twice against libiberty
I noticed that gdb includes libiberty twice in its link line. I don't
think there's a need for this, so this patch removes one of the
references.
gdb/ChangeLog
2020-01-14 Tom Tromey <tom@tromey.com>
* Makefile.in (CLIBS): Remove second use of $(LIBIBERTY).
Change-Id: I43bb7100660867081f937c67ea70ff751c62bbfb
@@ -1,5 +1,9 @@ | ||
1 | 1 | 2020-01-14 Tom Tromey <tom@tromey.com> |
2 | 2 | |
3 | + * Makefile.in (CLIBS): Remove second use of $(LIBIBERTY). | |
4 | + | |
5 | +2020-01-14 Tom Tromey <tom@tromey.com> | |
6 | + | |
3 | 7 | * nat/linux-btrace.c: Don't include <config.h>. |
4 | 8 | * nat/linux-ptrace.c: Don't include <config.h>. |
5 | 9 | * nat/x86-linux-dregs.c: Don't include <config.h>. |
@@ -615,7 +615,7 @@ CLIBS = $(SIM) $(READLINE) $(OPCODES) $(BFD) $(LIBCTF) $(ZLIB) \ | ||
615 | 615 | $(XM_CLIBS) $(GDBTKLIBS) \ |
616 | 616 | @LIBS@ @GUILE_LIBS@ @PYTHON_LIBS@ \ |
617 | 617 | $(LIBEXPAT) $(LIBLZMA) $(LIBBABELTRACE) $(LIBIPT) \ |
618 | - $(LIBIBERTY) $(WIN32LIBS) $(LIBGNU) $(LIBICONV) \ | |
618 | + $(WIN32LIBS) $(LIBGNU) $(LIBICONV) \ | |
619 | 619 | $(LIBMPFR) $(SRCHIGH_LIBS) $(LIBXXHASH) $(PTHREAD_LIBS) |
620 | 620 | CDEPS = $(NAT_CDEPS) $(SIM) $(BFD) $(READLINE_DEPS) $(LIBCTF) \ |
621 | 621 | $(OPCODES) $(INTL_DEPS) $(LIBIBERTY) $(CONFIG_DEPS) $(LIBGNU) \ |