3 ########################################################################
6 # Author: Mark Mitchell
9 # Adapted to Subversion by Ben Elliston <bje@au.ibm.com>, 2005-07-14.
12 # Script to automatically download and build GCC.
14 # Copyright (c) 2000, 2001, 2003, 2005 Free Software Foundation.
16 # This file is part of GCC.
18 # GCC is free software; you can redistribute it and/or modify
19 # it under the terms of the GNU General Public License as published by
20 # the Free Software Foundation; either version 2, or (at your option)
23 # GCC is distributed in the hope that it will be useful,
24 # but WITHOUT ANY WARRANTY; without even the implied warranty of
25 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
26 # GNU General Public License for more details.
28 # You should have received a copy of the GNU General Public License
29 # along with GCC; see the file COPYING. If not, write to
30 # the Free Software Foundation, 51 Franklin Street, Fifth Floor,
31 # Boston, MA 02110-1301, USA.
33 ########################################################################
35 ########################################################################
37 ########################################################################
39 # You can set the following variables in the environment. They
40 # have no corresponding command-line options because they should
41 # only be needed infrequently:
43 # MAKE The path to `make'.
45 ########################################################################
47 ########################################################################
49 # Issue the error message given by $1 and exit with a non-zero
53 echo "gcc_build: error: $1"
57 # Issue a usage message explaining how to use this script.
61 gcc_build [-c configure_options]
62 [-d destination_directory]
63 [-m make_boot_options]
69 [-x make_check_options]
82 # Change to the directory given by $1.
86 error
"Could not change directory to $1"
89 # Checkout a fresh copy of the GCC build tree.
92 # If the destination already exists, don't risk destroying it.
93 test -e ${DESTINATION} && \
94 error
"${DESTINATION} already exists"
97 test -n "${SVN_USERNAME}" && SVN_USERNAME
="${SVN_USERNAME}@"
98 SVNROOT
="${SVN_PROTOCOL}://${SVN_USERNAME}${SVN_SERVER}${SVN_REPOSITORY}${SVN_BRANCH}"
100 $GCC_SVN co
$SVNROOT ${DESTINATION} || \
101 error
"Could not check out GCC"
107 # If the destination does not already exist, complain.
108 test -d ${DESTINATION} || \
109 error
"${DESTINATION} does not exist"
111 # Enter the destination directory.
112 changedir
${DESTINATION}
115 .
/contrib
/gcc_update || \
116 error
"Could not update GCC"
119 # Configure for a build of GCC.
122 # Go to the source directory.
123 changedir
${DESTINATION}
125 # Remove the object directory.
129 error
"Could not create ${OBJDIR}"
133 # Configure the tree.
134 echo "Configuring: ${DESTINATION}/configure ${CONFIGURE_OPTIONS}"
135 eval ${DESTINATION}/configure
${CONFIGURE_OPTIONS} || \
136 error
"Could not configure the compiler"
139 # Bootstrap GCC. Assume configuration has already occurred.
142 # Go to the source directory.
143 changedir
${DESTINATION}
144 # Go to the object directory.
147 # Bootstrap the compiler
148 echo "Building: ${MAKE} ${MAKE_BOOTSTRAP_OPTIONS} bootstrap"
149 eval ${MAKE} ${MAKE_BOOTSTRAP_OPTIONS} bootstrap || \
150 error
"Could not bootstrap the compiler"
156 # Go to the source directory.
157 changedir
${DESTINATION}
158 # Go to the object directory.
161 echo "Running tests... This will take a while."
162 eval \
${MAKE} -k ${MAKE_CHECK_OPTIONS} check
163 ${DESTINATION}/contrib
/test_summary
166 # Export the GCC source tree.
169 # Go to the source directory.
170 changedir
${DESTINATION}
173 # Build a tarball of the source directory.
175 --exclude=${OBJDIR} \
179 `basename ${DESTINATION}`
185 # Go to the source directory.
186 changedir
${DESTINATION}
187 # Go to the object directory.
190 ${MAKE} install || error
"Installation failed"
193 ########################################################################
195 ########################################################################
198 GCC_SVN
=${GCC_SVN-${SVN-svn}}
199 # The SVN server containing the GCC repository.
200 SVN_SERVER
="gcc.gnu.org"
201 # The path to the repository on that server.
202 SVN_REPOSITORY
="/svn/gcc/"
203 # The branch to check out from that server.
204 # Defaults to trunk if no branch is defined with -b.
206 # The SVN protocol to use.
208 # The username to use when connecting to the server.
209 # An empty string means anonymous.
212 # The directory where the checked out GCC will be placed.
213 DESTINATION
="${HOME}/dev/gcc"
214 # The relative path from the top of the source tree to the
218 # The file where the tarred up sources will be placed.
219 TARFILE
="${HOME}/dev/gcc.tgz"
221 # Options to pass to configure.
223 # The `make' program.
225 # Options to pass to "make bootstrap".
226 MAKE_BOOTSTRAP_OPTIONS
=
227 # Options to pass to "make check".
239 ########################################################################
241 ########################################################################
243 # Issue usage if no parameters are given.
244 test $# -eq 0 && usage
247 while getopts "c:d:m:o:p:t:b:u:x:" ARG
; do
249 c
) CONFIGURE_OPTIONS
="${OPTARG}";;
250 d
) DESTINATION
="${OPTARG}";;
251 m
) MAKE_BOOTSTRAP_OPTIONS
="${OPTARG}";;
252 o
) OBJDIR
="${OPTARG}";;
253 p
) SVN_PROTOCOL
="${OPTARG}";;
254 t
) TARFILE
="${OPTARG}";;
255 x
) MAKE_CHECK_OPTIONS
="${OPTARG}";;
256 b
) SVN_BRANCH
="${OPTARG}";;
257 u
) SVN_USERNAME
="${OPTARG}";;
261 shift `expr ${OPTIND} - 1`
263 # Handle the major modes.
264 while [ $# -ne 0 ]; do
266 bootstrap
) BOOTSTRAP
=1;;
267 build
) CONFIGURE
=1; BOOTSTRAP
=1;;
268 checkout
) CHECKOUT
=1;;
269 configure
) CONFIGURE
=1;;
279 # Check the arguments for sanity.
280 if [ ${CHECKOUT} -ne 0 ] && [ ${UPDATE} -ne 0 ]; then
281 error
"Cannot checkout and update simultaneously"
284 if [ ${CHECKOUT} -eq 0 ] && test -n "${SVN_BRANCH}"; then
285 error
"Branch argument only makes sense when doing a checkout"
288 # Validate the branch name.
289 if test -n "${SVN_BRANCH}"; then
290 SVN_BRANCH
="branches/${SVN_BRANCH}";
296 if [ ${CHECKOUT} -ne 0 ]; then
298 elif [ ${UPDATE} -ne 0 ]; then
302 # Configure to build the tree.
303 if [ ${CONFIGURE} -ne 0 ]; then
307 # Bootstrap the compiler.
308 if [ ${BOOTSTRAP} -ne 0 ]; then
313 if [ ${TEST} -ne 0 ]; then
317 # Install the compiler.
318 if [ ${INSTALL} -ne 0 ]; then
323 if [ ${EXPORT} -ne 0 ]; then