diff options
author | Nate Williams <nate@FreeBSD.org> | 1995-04-07 05:13:26 +0000 |
---|---|---|
committer | Nate Williams <nate@FreeBSD.org> | 1995-04-07 05:13:26 +0000 |
commit | 5a5755a5567c7aa1df51d43220f6ab17de159979 (patch) | |
tree | 86601c6e5c5209505407551a7707aa6f3893bdd4 /gnu/usr.bin/binutils/gdb | |
parent | 7e613ac7bd69326e12c2a26b31eb76ac902d5131 (diff) | |
download | src-5a5755a5567c7aa1df51d43220f6ab17de159979.tar.gz src-5a5755a5567c7aa1df51d43220f6ab17de159979.zip |
Because -lcompat defines the same symbols as -lgnuregex and the weakness
of the linker to enforce linking of modules in command line order it is
not possible to link gdb shared with -lcompat.
*HACK ALERT*
Removed -lcompat from LDADD and bring in the necessary functions out of
libcompat as a source module until the linker can be fixed.
Notes
Notes:
svn path=/head/; revision=7653
Diffstat (limited to 'gnu/usr.bin/binutils/gdb')
-rw-r--r-- | gnu/usr.bin/binutils/gdb/Makefile | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/gnu/usr.bin/binutils/gdb/Makefile b/gnu/usr.bin/binutils/gdb/Makefile index 990a1ab1a8a1..68a86ae5395b 100644 --- a/gnu/usr.bin/binutils/gdb/Makefile +++ b/gnu/usr.bin/binutils/gdb/Makefile @@ -17,7 +17,7 @@ SRCS = annotate.c blockframe.c breakpoint.c buildsym.c c-lang.c \ symtab.c target.c thread.c top.c \ typeprint.c utils.c valarith.c valops.c \ valprint.c values.c version.c serial.c ser-unix.c mdebugread.c\ - c-exp.tab.c ch-exp.tab.c m2-exp.tab.c + c-exp.tab.c ch-exp.tab.c m2-exp.tab.c compat_que.c c-exp.tab.c: $(.CURDIR)/c-exp.y yacc -d -p c_ $(.CURDIR)/c-exp.y @@ -72,7 +72,4 @@ LDADD+= -L${.CURDIR}/../mmalloc/ -lmmalloc DPADD+= ${.CURDIR}/../mmalloc/libmmalloc.a .endif -LDADD+= -lcompat -DPADD+= ${LIBCOMPAT} - .include <bsd.prog.mk> |