diff options
author | Zack Weinberg <zack@gcc.gnu.org> | 2004-08-16 23:05:04 +0000 |
---|---|---|
committer | Zack Weinberg <zack@gcc.gnu.org> | 2004-08-16 23:05:04 +0000 |
commit | 45c8116dff2f220cfc8bc2d8a711fe05a6a81bce (patch) | |
tree | 4b01d869c6393712cbeb6564cd4c1f21829d3675 /gcc/configure.ac | |
parent | 4d73e20b4e0c9fc79ee93390113ddfffb4be38d3 (diff) | |
download | gcc-45c8116dff2f220cfc8bc2d8a711fe05a6a81bce.zip gcc-45c8116dff2f220cfc8bc2d8a711fe05a6a81bce.tar.gz gcc-45c8116dff2f220cfc8bc2d8a711fe05a6a81bce.tar.bz2 |
Makefile.in (BUILD_PREFIX, [...]): Delete.
* Makefile.in (BUILD_PREFIX, BUILD_PREFIX_1): Delete.
(BUILD_RTL, BUILD_PRINT, BUILD_ERRORS, BUILD_VARRAY): Update.
(genobjs): Add build-rtl.o, build-print-rtl.o, build-varray.o.
(genobjs static pattern rule): Remove %.c dependency.
($(BUILD_PREFIX_1)rtl.o, print-rtl.o, $(BUILD_PREFIX_1)varray.o):
Rename rules; delete commands; fix dependencies.
(mostlyclean): Do not delete temporary source copies.
* configure.ac: Delete all references to BUILD_PREFIX and
BUILD_PREFIX_1.
* configure: Regenerate.
* print-rtl.c: Include bconfig.h #ifdef GENERATOR_FILE.
Do not include tree.h, real.h, flags.h, hard-reg-set.h, or
basic-block.h #ifdef GENERATOR_FILE. Surround some more code
with #ifndef GENERATOR_FILE so that nothing from those headers
is used.
* rtl.c, varray.c: Include bconfig.h #ifdef GENERATOR_FILE.
From-SVN: r86083
Diffstat (limited to 'gcc/configure.ac')
-rw-r--r-- | gcc/configure.ac | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/gcc/configure.ac b/gcc/configure.ac index 4ebac6e..5e01892 100644 --- a/gcc/configure.ac +++ b/gcc/configure.ac @@ -1653,11 +1653,8 @@ AC_SUBST(inhibit_libc) # Also, we cannot run fixincludes or fix-header. # These are the normal (build=host) settings: -BUILD_PREFIX= AC_SUBST(BUILD_PREFIX) -BUILD_PREFIX_1=ignore- AC_SUBST(BUILD_PREFIX_1) CC_FOR_BUILD='$(CC)' AC_SUBST(CC_FOR_BUILD) BUILD_CFLAGS='$(ALL_CFLAGS)' AC_SUBST(BUILD_CFLAGS) - STMP_FIXINC=stmp-fixinc AC_SUBST(STMP_FIXINC) # Possibly disable fixproto, on a per-target basis. @@ -1674,8 +1671,6 @@ AC_SUBST(STMP_FIXPROTO) # And these apply if build != host, or we are generating coverage data if test x$build != x$host || test "x$coverage_flags" != x then - BUILD_PREFIX=build- - BUILD_PREFIX_1=build- BUILD_CFLAGS='$(INTERNAL_CFLAGS) $(T_CFLAGS) $(CFLAGS_FOR_BUILD)' if test "x$TARGET_SYSTEM_ROOT" = x; then |