From 998b321b939c4e4905f921af78f4b00117fa02f8 Mon Sep 17 00:00:00 2001 From: "J.T. Conklin" Date: Fri, 29 Jul 1994 17:08:25 +0000 Subject: [PATCH] * Makefile.in (CC_FOR_TARGET, CXX_FOR_TARGET): If using newlib, set the -L and -B directory prefixes so we can link with it. --- gdb/ChangeLog | 5 +++++ gdb/Makefile.in | 5 ++--- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 07455cb2de..fd44ecb67e 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +Fri Jul 29 09:59:05 1994 J.T. Conklin (jtc@phishhead.cygnus.com) + + * Makefile.in (CC_FOR_TARGET, CXX_FOR_TARGET): If using newlib, + set the -L and -B directory prefixes so we can link with it. + Thu Jul 28 14:37:36 1994 Stu Grossman (grossman@cygnus.com) * Makefile.in (INSTALLED_LIBS, CLIBS, DEPFILES): Add support for diff --git a/gdb/Makefile.in b/gdb/Makefile.in index cfbbd18824..469cbdb701 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -234,7 +234,7 @@ FLAGS_TO_PASS = \ CC_FOR_TARGET = ` \ if [ -f $${rootme}/../gcc/xgcc ] ; then \ if [ -f $${rootme}/../newlib/Makefile ] ; then \ - echo $${rootme}/../gcc/xgcc -B$${rootme}/../gcc/ -idirafter $${rootme}/newlib/targ-include -idirafter $${rootsrc}/../newlib/libc/include -nostdinc; \ + echo $${rootme}/../gcc/xgcc -B$${rootme}/../gcc/ -idirafter $${rootme}/newlib/targ-include -idirafter $${rootsrc}/../newlib/libc/include -nostdinc -L$${rootme}/../../newlib -B$${rootme}/../../newlib/; \ else \ echo $${rootme}/../gcc/xgcc -B$${rootme}/../gcc/; \ fi; \ @@ -247,11 +247,10 @@ CC_FOR_TARGET = ` \ fi` CXX = gcc - CXX_FOR_TARGET = ` \ if [ -f $${rootme}/../gcc/Makefile ] ; then \ if [ -f $${rootme}/../newlib/Makefile ] ; then \ - echo $${rootme}/../gcc/xgcc -B$${rootme}/../gcc/ -idirafter $${rootme}/newlib/targ-include -idirafter $${rootsrc}/../newlib/libc/include -nostdinc; \ + echo $${rootme}/../gcc/xgcc -B$${rootme}/../gcc/ -idirafter $${rootme}/newlib/targ-include -idirafter $${rootsrc}/../newlib/libc/include -nostdinc -L$${rootme}/../../newlib -B$${rootme}/../../newlib/; \ else \ echo $${rootme}/../gcc/xgcc -B$${rootme}/../gcc/; \ fi; \