Merge from gcc:
2003-08-01 Matt Kraai <kraai@alumni.cmu.edu> * Makefile.tpl (check, check-c++): Express dependencies using dependencies rather than commands. * Makefile.in: Regenerate. 2003-07-31 Geoffrey Keating <geoffk@apple.com> * Makefile.tpl (libsubdir): Use gcc instead of gcc-lib. * Makefile.in: Update.
This commit is contained in:
parent
4ef893318a
commit
ede4fbe4b4
3 changed files with 19 additions and 78 deletions
13
ChangeLog
13
ChangeLog
|
@ -1,3 +1,16 @@
|
||||||
|
2003-08-01 Nathanael Nerode <neroden@gcc.gnu.org>
|
||||||
|
|
||||||
|
Merge from gcc:
|
||||||
|
|
||||||
|
2003-08-01 Matt Kraai <kraai@alumni.cmu.edu>
|
||||||
|
* Makefile.tpl (check, check-c++): Express dependencies using
|
||||||
|
dependencies rather than commands.
|
||||||
|
* Makefile.in: Regenerate.
|
||||||
|
|
||||||
|
2003-07-31 Geoffrey Keating <geoffk@apple.com>
|
||||||
|
* Makefile.tpl (libsubdir): Use gcc instead of gcc-lib.
|
||||||
|
* Makefile.in: Update.
|
||||||
|
|
||||||
2003-08-01 Andrew Cagney <cagney@redhat.com>
|
2003-08-01 Andrew Cagney <cagney@redhat.com>
|
||||||
|
|
||||||
* configure.in (noconfigdirs): Do not add GDB when m32r-*-*.
|
* configure.in (noconfigdirs): Do not add GDB when m32r-*-*.
|
||||||
|
|
76
Makefile.in
76
Makefile.in
|
@ -85,7 +85,7 @@ tooldir = @tooldir@
|
||||||
build_tooldir = @build_tooldir@
|
build_tooldir = @build_tooldir@
|
||||||
|
|
||||||
# Directory in which the compiler finds executables, libraries, etc.
|
# Directory in which the compiler finds executables, libraries, etc.
|
||||||
libsubdir = $(libdir)/gcc-lib/$(target_alias)/$(gcc_version)
|
libsubdir = $(libdir)/gcc/$(target_alias)/$(gcc_version)
|
||||||
GDB_NLM_DEPS =
|
GDB_NLM_DEPS =
|
||||||
|
|
||||||
# This is the name of the environment variable used for the path to
|
# This is the name of the environment variable used for the path to
|
||||||
|
@ -17287,8 +17287,7 @@ clean-target-libgcc:
|
||||||
# Check target.
|
# Check target.
|
||||||
|
|
||||||
.PHONY: check do-check
|
.PHONY: check do-check
|
||||||
check:
|
check: do-check
|
||||||
$(MAKE) do-check
|
|
||||||
|
|
||||||
# Only include modules actually being configured and built.
|
# Only include modules actually being configured and built.
|
||||||
do-check: maybe-check-gcc \
|
do-check: maybe-check-gcc \
|
||||||
|
@ -17606,74 +17605,6 @@ TAGS: do-TAGS
|
||||||
# Modules which run on the build machine
|
# Modules which run on the build machine
|
||||||
# --------------------------------------
|
# --------------------------------------
|
||||||
|
|
||||||
.PHONY: configure-build-fixincludes maybe-configure-build-fixincludes
|
|
||||||
maybe-configure-build-fixincludes:
|
|
||||||
configure-build-fixincludes:
|
|
||||||
@test ! -f $(BUILD_SUBDIR)/fixincludes/Makefile || exit 0; \
|
|
||||||
$(SHELL) $(srcdir)/mkinstalldirs $(BUILD_SUBDIR)/fixincludes ; \
|
|
||||||
r=`${PWD_COMMAND}`; export r; \
|
|
||||||
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
||||||
AR="$(AR_FOR_BUILD)"; export AR; \
|
|
||||||
AS="$(AS_FOR_BUILD)"; export AS; \
|
|
||||||
CC="$(CC_FOR_BUILD)"; export CC; \
|
|
||||||
CFLAGS="$(CFLAGS_FOR_BUILD)"; export CFLAGS; \
|
|
||||||
CXX="$(CXX_FOR_BUILD)"; export CXX; \
|
|
||||||
CXXFLAGS="$(CXXFLAGS_FOR_BUILD)"; export CXXFLAGS; \
|
|
||||||
GCJ="$(GCJ_FOR_BUILD)"; export GCJ; \
|
|
||||||
DLLTOOL="$(DLLTOOL_FOR_BUILD)"; export DLLTOOL; \
|
|
||||||
LD="$(LD_FOR_BUILD)"; export LD; \
|
|
||||||
LDFLAGS="$(LDFLAGS_FOR_BUILD)"; export LDFLAGS; \
|
|
||||||
NM="$(NM_FOR_BUILD)"; export NM; \
|
|
||||||
RANLIB="$(RANLIB_FOR_BUILD)"; export RANLIB; \
|
|
||||||
WINDRES="$(WINDRES_FOR_BUILD)"; export WINDRES; \
|
|
||||||
echo Configuring in $(BUILD_SUBDIR)/fixincludes; \
|
|
||||||
cd "$(BUILD_SUBDIR)/fixincludes" || exit 1; \
|
|
||||||
case $(srcdir) in \
|
|
||||||
/* | [A-Za-z]:[\\/]*) \
|
|
||||||
topdir=$(srcdir) ;; \
|
|
||||||
*) \
|
|
||||||
case "$(BUILD_SUBDIR)" in \
|
|
||||||
.) topdir="../$(srcdir)" ;; \
|
|
||||||
*) topdir="../../$(srcdir)" ;; \
|
|
||||||
esac ;; \
|
|
||||||
esac; \
|
|
||||||
if [ "$(srcdir)" = "." ] ; then \
|
|
||||||
if [ "$(BUILD_SUBDIR)" != "." ] ; then \
|
|
||||||
if $(SHELL) $$s/symlink-tree $${topdir}/fixincludes "no-such-file" ; then \
|
|
||||||
if [ -f Makefile ]; then \
|
|
||||||
if $(MAKE) distclean; then \
|
|
||||||
true; \
|
|
||||||
else \
|
|
||||||
exit 1; \
|
|
||||||
fi; \
|
|
||||||
else \
|
|
||||||
true; \
|
|
||||||
fi; \
|
|
||||||
else \
|
|
||||||
exit 1; \
|
|
||||||
fi; \
|
|
||||||
else \
|
|
||||||
true; \
|
|
||||||
fi; \
|
|
||||||
srcdiroption="--srcdir=."; \
|
|
||||||
libsrcdir="."; \
|
|
||||||
else \
|
|
||||||
srcdiroption="--srcdir=$${topdir}/fixincludes"; \
|
|
||||||
libsrcdir="$$s/fixincludes"; \
|
|
||||||
fi; \
|
|
||||||
rm -f no-such-file || : ; \
|
|
||||||
CONFIG_SITE=no-such-file $(SHELL) $${libsrcdir}/configure \
|
|
||||||
$(BUILD_CONFIGARGS) $${srcdiroption} \
|
|
||||||
--with-build-subdir="$(BUILD_SUBDIR)" \
|
|
||||||
|| exit 1
|
|
||||||
|
|
||||||
.PHONY: all-build-fixincludes maybe-all-build-fixincludes
|
|
||||||
maybe-all-build-fixincludes:
|
|
||||||
all-build-fixincludes: configure-build-fixincludes
|
|
||||||
@r=`${PWD_COMMAND}`; export r; \
|
|
||||||
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
|
||||||
(cd $(BUILD_SUBDIR)/fixincludes && $(MAKE) all)
|
|
||||||
|
|
||||||
.PHONY: configure-build-libiberty maybe-configure-build-libiberty
|
.PHONY: configure-build-libiberty maybe-configure-build-libiberty
|
||||||
maybe-configure-build-libiberty:
|
maybe-configure-build-libiberty:
|
||||||
configure-build-libiberty:
|
configure-build-libiberty:
|
||||||
|
@ -23722,8 +23653,7 @@ check-gcc-c++:
|
||||||
fi
|
fi
|
||||||
|
|
||||||
.PHONY: check-c++
|
.PHONY: check-c++
|
||||||
check-c++:
|
check-c++: check-target-libstdc++-v3 check-gcc-c++
|
||||||
$(MAKE) check-target-libstdc++-v3 check-gcc-c++
|
|
||||||
|
|
||||||
.PHONY: install-gcc maybe-install-gcc
|
.PHONY: install-gcc maybe-install-gcc
|
||||||
maybe-install-gcc:
|
maybe-install-gcc:
|
||||||
|
|
|
@ -88,7 +88,7 @@ tooldir = @tooldir@
|
||||||
build_tooldir = @build_tooldir@
|
build_tooldir = @build_tooldir@
|
||||||
|
|
||||||
# Directory in which the compiler finds executables, libraries, etc.
|
# Directory in which the compiler finds executables, libraries, etc.
|
||||||
libsubdir = $(libdir)/gcc-lib/$(target_alias)/$(gcc_version)
|
libsubdir = $(libdir)/gcc/$(target_alias)/$(gcc_version)
|
||||||
GDB_NLM_DEPS =
|
GDB_NLM_DEPS =
|
||||||
|
|
||||||
# This is the name of the environment variable used for the path to
|
# This is the name of the environment variable used for the path to
|
||||||
|
@ -665,8 +665,7 @@ clean-target-libgcc:
|
||||||
# Check target.
|
# Check target.
|
||||||
|
|
||||||
.PHONY: check do-check
|
.PHONY: check do-check
|
||||||
check:
|
check: do-check
|
||||||
$(MAKE) do-check
|
|
||||||
|
|
||||||
# Only include modules actually being configured and built.
|
# Only include modules actually being configured and built.
|
||||||
do-check: maybe-check-gcc [+
|
do-check: maybe-check-gcc [+
|
||||||
|
@ -1229,8 +1228,7 @@ check-gcc-c++:
|
||||||
fi
|
fi
|
||||||
|
|
||||||
.PHONY: check-c++
|
.PHONY: check-c++
|
||||||
check-c++:
|
check-c++: check-target-libstdc++-v3 check-gcc-c++
|
||||||
$(MAKE) check-target-libstdc++-v3 check-gcc-c++
|
|
||||||
|
|
||||||
.PHONY: install-gcc maybe-install-gcc
|
.PHONY: install-gcc maybe-install-gcc
|
||||||
maybe-install-gcc:
|
maybe-install-gcc:
|
||||||
|
|
Loading…
Reference in a new issue