This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

PATCH: Print out configuration information when doingautobuilds



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"
  }


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]