* Makefile.in (CC_FOR_TARGET, CXX_FOR_TARGET): Use newlib if it is

there and we are using the gcc from the tree.

* gdb.base/types.c: Removed.
This commit is contained in:
J.T. Conklin 1994-07-28 21:23:28 +00:00
parent 9f70e45075
commit c2926ab7fc
2 changed files with 15 additions and 2 deletions

View File

@ -1,5 +1,10 @@
Thu Jul 28 12:54:07 1994 J.T. Conklin (jtc@phishhead.cygnus.com)
* Makefile.in (CC_FOR_TARGET, CXX_FOR_TARGET): Use newlib if it is
there and we are using the gcc from the tree.
* gdb.base/types.c: Removed.
* gdb.base/configure.in: Look for makefile fragments in ../config.
Recognize i386-*-netware.
* gdb.c++/configure.in: Likewise.

View File

@ -82,7 +82,11 @@ RUNTEST_FOR_TARGET = `\
CC_FOR_TARGET = ` \
if [ -f $${rootme}/../../gcc/xgcc ] ; then \
echo $${rootme}/../../gcc/xgcc -B$${rootme}/../../gcc/; \
if [ -f $${rootme}/../../newlib/Makefile ]; then \
echo $${rootme}/../../gcc/xgcc -B$${rootme}/../../gcc/ -idirafter $${rootme}/../../newlib/targ-include -idirafter $${rootsrc}/../../newlib/libc/include -nostdinc; \
else \
echo $${rootme}/../../gcc/xgcc -B$${rootme}/../../gcc/; \
fi; \
else \
if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
echo $(CC); \
@ -94,7 +98,11 @@ CC_FOR_TARGET = ` \
CXX = gcc
CXX_FOR_TARGET = ` \
if [ -f $${rootme}/../../gcc/xgcc ] ; then \
echo $${rootme}/../../gcc/xgcc -B$${rootme}/../../gcc/; \
if [ -f $${rootme}/../../newlib/Makefile ]; then
echo $${rootme}/../../gcc/xgcc -B$${rootme}/../../gcc/ -idirafter $${rootme}/../../newlib/targ-include -idirafter $${rootsrc}/../../newlib/libc/include -nostdinc; \
else \
echo $${rootme}/../../gcc/xgcc -B$${rootme}/../../gcc/; \
fi; \
else \
if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
echo $(CXX); \