diff options
author | Joel Sherrill <joel@OARcorp.com> | 2000-01-12 11:01:26 +0000 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 2000-01-12 04:01:26 -0700 |
commit | 02368d6dd494ec96e04bb987fcadfc39fa065301 (patch) | |
tree | 8f3e5547d5ccd74f46a840cdf370223b166eb9ee | |
parent | 76875ef1b2b1527e6a7c9620b9da3f6b7c8d82cc (diff) | |
download | gcc-02368d6dd494ec96e04bb987fcadfc39fa065301.zip gcc-02368d6dd494ec96e04bb987fcadfc39fa065301.tar.gz gcc-02368d6dd494ec96e04bb987fcadfc39fa065301.tar.bz2 |
Makefile.in (CC_FOR_TARGET): Use newlib libraries as well as include files.
* Makefile.in (CC_FOR_TARGET): Use newlib libraries as well
as include files.
From-SVN: r31351
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | Makefile.in | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,8 @@ +2000-01-12 Joel Sherrill (joel@OARcorp.com) + + * Makefile.in (CC_FOR_TARGET): Use newlib libraries as well + as include files. + 2000-01-11 Zack Weinberg <zack@wolery.cumb.org> * Add self as cpplib maintainer, as requested by Jason diff --git a/Makefile.in b/Makefile.in index 7af1784..369f1ff 100644 --- a/Makefile.in +++ b/Makefile.in @@ -216,7 +216,7 @@ CC_FOR_TARGET = ` \ if [ -f $$r/$(TARGET_SUBDIR)/winsup/Makefile ] ; then \ echo $$r/gcc/xgcc -B$$r/gcc/ -B$$r/$(TARGET_SUBDIR)/newlib/ -B$(build_tooldir)/bin/ -L$$r/$(TARGET_SUBDIR)/winsup -idirafter $$r/$(TARGET_SUBDIR)/newlib/targ-include -idirafter $$s/newlib/libc/include -nostdinc; \ else \ - echo $$r/gcc/xgcc -B$$r/gcc/ -B$(build_tooldir)/bin/ -idirafter $$r/$(TARGET_SUBDIR)/newlib/targ-include -idirafter $$s/newlib/libc/include -nostdinc; \ + echo $$r/gcc/xgcc -B$$r/gcc/ -B$$r/$(TARGET_SUBDIR)/newlib/ -B$(build_tooldir)/bin/ -idirafter $$r/$(TARGET_SUBDIR)/newlib/targ-include -idirafter $$s/newlib/libc/include -nostdinc; \ fi; \ else \ echo $$r/gcc/xgcc -B$$r/gcc/ -B$(build_tooldir)/bin/; \ |