diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1993-12-23 08:11:50 -0500 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1993-12-23 08:11:50 -0500 |
commit | de9253a04d434ed455f28fa8cedfdaa6d481b1b3 (patch) | |
tree | 74af4f79a2ba2cb024f8d74609cf440ea3eb34f3 /gcc | |
parent | 1c4eddf19baf8a5fb90a0b0a87e91f91d265392b (diff) | |
download | gcc-de9253a04d434ed455f28fa8cedfdaa6d481b1b3.zip gcc-de9253a04d434ed455f28fa8cedfdaa6d481b1b3.tar.gz gcc-de9253a04d434ed455f28fa8cedfdaa6d481b1b3.tar.bz2 |
Refine last change; just add -I.
From-SVN: r6279
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/Makefile.in | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/gcc/Makefile.in b/gcc/Makefile.in index 883e8e2..c22dc89 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -100,10 +100,8 @@ 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 -# and -I./include. -GCC_CFLAGS=$(INTERNAL_CFLAGS) $(X_CFLAGS) $(T_CFLAGS) $(CFLAGS) \ - -B$(TARGET_TOOLPREFIX) -I./include +# It also specifies -I./include to find, e.g., stddef.h. +GCC_CFLAGS=$(INTERNAL_CFLAGS) $(X_CFLAGS) $(T_CFLAGS) $(CFLAGS) -I./include # Special flags for compiling enquire. # We disable optimization to make floating point more reliable. |