Commit 1a161f08 by Richard Kenner

(GCC_CFLAGS): Add -B and -I options.

From-SVN: r6277
parent a4e262bc
......@@ -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.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment