aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Stallman <rms@gnu.org>1992-08-17 07:38:18 +0000
committerRichard Stallman <rms@gnu.org>1992-08-17 07:38:18 +0000
commitf2e663b6979fd71e55bc5e8e670e42556517f89c (patch)
tree5f7e0e3af07e75f1339f82259f7800080ac6d959
parent2bb649fe7cf7ba78657d44fb9a885dfa46cb6cb4 (diff)
downloadgcc-f2e663b6979fd71e55bc5e8e670e42556517f89c.zip
gcc-f2e663b6979fd71e55bc5e8e670e42556517f89c.tar.gz
gcc-f2e663b6979fd71e55bc5e8e670e42556517f89c.tar.bz2
(GCC_FOR_TARGET): Put -B./ here.
(GCC_CFLAGS): Not here. From-SVN: r1862
-rw-r--r--gcc/Makefile.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/Makefile.in b/gcc/Makefile.in
index e8778e0..2146eb3 100644
--- a/gcc/Makefile.in
+++ b/gcc/Makefile.in
@@ -90,12 +90,12 @@ OLDAR = ar
# The GCC to use for compiling libgcc2.a, enquire, and cross-test.
# Usually the one we just built.
# Don't use this as a dependency--use $(GCC_PASSES) or $(GCC_PARTS).
-GCC_FOR_TARGET = ./xgcc
+GCC_FOR_TARGET = ./xgcc -B./
# This is used instead of ALL_CFLAGS when compiling with GCC_FOR_TARGET.
# It omits XCFLAGS, and specifies -B./.
# It also specifies -B$(tooldir)/ to find as and ld for a cross compiler.
-GCC_CFLAGS=$(INTERNAL_CFLAGS) $(X_CFLAGS) $(T_CFLAGS) $(CFLAGS) -B./ $(CROSS_GCC_CFLAGS)
+GCC_CFLAGS=$(INTERNAL_CFLAGS) $(X_CFLAGS) $(T_CFLAGS) $(CFLAGS) $(CROSS_GCC_CFLAGS)
# Special flags for compiling enquire.
# We disable optimization to make floating point more reliable.