diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1993-12-23 07:30:10 -0500 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1993-12-23 07:30:10 -0500 |
commit | 1a161f08c86e92c7b408d3bec0700f68b85c1af6 (patch) | |
tree | c246b108eee2de20f9eef70b50200095bc265516 /gcc | |
parent | a4e262bcecd21362015f8137eb096b0f7f7f8cd7 (diff) | |
download | gcc-1a161f08c86e92c7b408d3bec0700f68b85c1af6.zip gcc-1a161f08c86e92c7b408d3bec0700f68b85c1af6.tar.gz gcc-1a161f08c86e92c7b408d3bec0700f68b85c1af6.tar.bz2 |
(GCC_CFLAGS): Add -B and -I options.
From-SVN: r6277
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/Makefile.in | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gcc/Makefile.in b/gcc/Makefile.in index e6dfe6e..883e8e2 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -100,8 +100,10 @@ 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) +# It also specifies -B$(tooldir)/ to find as and ld for a cross compiler +# and -I./include. +GCC_CFLAGS=$(INTERNAL_CFLAGS) $(X_CFLAGS) $(T_CFLAGS) $(CFLAGS) \ + -B$(TARGET_TOOLPREFIX) -I./include # Special flags for compiling enquire. # We disable optimization to make floating point more reliable. |