This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
PATCH: Print out configuration information when doingautobuilds
- To: gcc-patches at gcc dot gnu dot org
- Subject: PATCH: Print out configuration information when doingautobuilds
- From: Mark Mitchell <mark at codesourcery dot com>
- Date: Mon, 11 Jun 2001 14:10:23 -0700
- Organization: CodeSourcery, LLC
This patch makes gcc_build print out what it's doing when configuring
and building the compiler. Installed on the mainline and on the
branch.
--
Mark Mitchell mark@codesourcery.com
CodeSourcery, LLC http://www.codesourcery.com
2001-06-11 Mark Mitchell <mark@codesourcery.com>
* gcc_build: Output information about the commands used to
configure the compiler.
Index: contrib/gcc_build
===================================================================
RCS file: /cvs/gcc/gcc/contrib/gcc_build,v
retrieving revision 1.9.4.1
diff -c -p -r1.9.4.1 gcc_build
*** gcc_build 2001/05/22 06:43:25 1.9.4.1
--- gcc_build 2001/06/11 20:51:21
*************** configure_gcc() {
*** 146,151 ****
--- 146,152 ----
changedir ${OBJDIR}
# Configure the tree.
+ echo "Configuring: ${DESTINATION}/configure ${CONFIGURE_OPTIONS}"
eval ${DESTINATION}/configure ${CONFIGURE_OPTIONS} || \
error "Could not configure the compiler"
}
*************** bootstrap_gcc() {
*** 159,164 ****
--- 160,166 ----
changedir ${OBJDIR}
# Bootstrap the compiler
+ echo "Building: ${MAKE} ${MAKE_BOOTSTRAP_OPTIONS} bootstrap"
eval ${MAKE} ${MAKE_BOOTSTRAP_OPTIONS} bootstrap || \
error "Could not bootstrap the compiler"
}