OSDN Git Service

* gcc_build: Add -o option for setting the objdir to use.
[pf3gnuchains/gcc-fork.git] / contrib / gcc_build
1 #! /bin/sh
2
3 ########################################################################
4 #
5 # File:   gcc_build
6 # Author: Mark Mitchell
7 # Date:   07/10/2000
8 #
9 # Contents:
10 #   Script to automatically download and build GCC.
11 #
12 # Copyright (c) 2000 Free Software Foundation.
13 #
14 # This file is part of GNU CC.
15 #
16 # GNU CC is free software; you can redistribute it and/or modify
17 # it under the terms of the GNU General Public License as published by
18 # the Free Software Foundation; either version 2, or (at your option)
19 # any later version.
20 #
21 # GNU CC is distributed in the hope that it will be useful,
22 # but WITHOUT ANY WARRANTY; without even the implied warranty of
23 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
24 # GNU General Public License for more details.
25 #
26 # You should have received a copy of the GNU General Public License
27 # along with GNU CC; see the file COPYING.  If not, write to
28 # the Free Software Foundation, 59 Temple Place - Suite 330,
29 # Boston, MA 02111-1307, USA.
30 #
31 ########################################################################
32
33 ########################################################################
34 # Notes
35 ########################################################################
36
37 # If you are using password-based CVS, you must manually log in, and
38 # not log out from, the CVS server before running this script.
39
40 # You can set the following variables in the environment.  They 
41 # have no corresponding command-line options because they should
42 # only be needed infrequently:
43 #
44 #   MAKE                        The path to `make'.
45
46 ########################################################################
47 # Functions
48 ########################################################################
49
50 # Issue the error message given by $1 and exit with a non-zero
51 # exit code.
52
53 error() {
54     echo "gcc_build: error: $1"
55     exit 1
56 }
57
58 # Issue a usage message explaining how to use this script.
59
60 usage() {
61 cat <<EOF
62 gcc_build        [-c configure_options] 
63                  [-d destination_directory]
64                  [-m make_boot_options]
65                  [-o objdir]
66                  [-u username]
67                  [-p protocol]
68                  [-t tarfile]
69                  [bootstrap]
70                  [build]
71                  [checkout]
72                  [configure]
73                  [export]
74                  [install]
75                  [test]
76                  [update]
77 EOF
78     exit 1
79 }
80
81 # Change to the directory given by $1.
82
83 changedir() {
84     cd $1 || \
85         error "Could not change directory to $1"
86 }
87
88 # Set up CVS environment variables
89
90 cvs_setup() {
91     CVSROOT=":${CVS_PROTOCOL}:${CVS_USERNAME}@"
92     CVSROOT="${CVSROOT}${CVS_SERVER}:${CVS_REPOSITORY}"
93     export CVSROOT
94 }
95
96 # Checkout a fresh copy of the GCC build tree.
97
98 checkout_gcc() {
99     # Tell CVS where to find everything.
100     cvs_setup
101
102     # If the destination already exists, don't risk destroying it.
103     test -e ${DESTINATION} && \
104         error "${DESTINATION} already exists"
105
106     # CVS doesn't allow an absolute path for the destination directory.
107     DESTINATION_PARENT=`dirname ${DESTINATION}`
108     test -d ${DESTINATION_PARENT} || \
109         error "${DESTINATION_PARENT} is not a directory"
110     changedir ${DESTINATION_PARENT}
111
112     # Checkout the tree
113     cvs -z 9 co -d `basename ${DESTINATION}` gcc || \
114         error "Could not check out GCC"
115 }
116
117 # Update GCC.
118
119 update_gcc() {
120     # Tell CVS where to find everything
121     cvs_setup
122
123     # If the destination does not already exist, complain.
124     test -d ${DESTINATION} || \
125         error "{$DESTINATION} does not exist"
126     # Enter the destination directory.
127     changedir ${DESTINATION}
128
129     # Update the tree
130     (./contrib/gcc_update | tee -a ${LOGFILE}) || \
131         error "Could not update GCC"
132 }
133
134 # Configure for a build of GCC.
135
136 configure_gcc() {
137     # Go to the source directory.
138     changedir ${DESTINATION}
139
140     # Remove the object directory.
141     rm -rf ${OBJDIR}
142     # Create it again.
143     mkdir ${OBJDIR} || \
144         error "Could not create ${OBJDIR}"
145     # Enter it.
146     changedir ${OBJDIR}
147
148     # Configure the tree.
149     (eval ${DESTINATION}/configure ${CONFIGURE_OPTIONS} 2>&1 | 
150         tee -a ${LOGFILE}) || \
151         error "Could not configure the compiler"
152 }
153
154 # Bootstrap GCC.  Assume configuration has already occurred.
155
156 bootstrap_gcc() {
157     # Go to the source directory.
158     changedir ${DESTINATION}
159     # Go to the object directory.
160     changedir ${OBJDIR}
161
162     # Bootstrap the compiler
163     (eval ${MAKE} ${MAKE_BOOTSTRAP_OPTIONS} bootstrap 2>&1 |
164         tee -a ${LOGFILE}) || \
165         error "Could not bootstrap the compiler"
166 }
167
168 # Test GCC.
169
170 test_gcc() {
171     # Go to the source directory.
172     changedir ${DESTINATION}
173     # Go to the object directory.
174     changedir ${OBJDIR}
175
176     echo "Running tests...  This will take a while."
177     (${MAKE} -k check 2>&1 | tee -a ${LOGFILE})
178     (${DESTINATION}/contrib/test_summary | tee -a ${LOGFILE})
179 }
180
181 # Export the GCC source tree.
182
183 export_gcc() {
184     # Go to the source directory.
185     changedir ${DESTINATION}
186     # Go up one level.
187     changedir ..
188     # Build a tarball of the source directory.
189     tar czf ${TARFILE} \
190         --exclude=${OBJDIR} \
191         --exclude=CVS \
192         --exclude='.#*' \
193         --exclude='*~' \
194         `basename ${DESTINATION}`
195 }
196
197 # Install GCC.
198
199 install_gcc() {
200     # Go to the source directory.
201     changedir ${DESTINATION}
202     # Go to the object directory.
203     changedir ${OBJDIR}
204
205     (${MAKE} install 2>&1 | tee -a ${LOGFILE}) || \
206         error "Installation failed"
207 }
208
209 ########################################################################
210 # Initialization
211 ########################################################################
212
213 # The CVS server containing the GCC repository.
214 CVS_SERVER="gcc.gnu.org"
215 # The path to the repository on that server.
216 CVS_REPOSITORY="/cvs/gcc"
217 # The CVS protocol to use.
218 CVS_PROTOCOL="pserver"
219 # The username to use when connecting to the server.
220 CVS_USERNAME="anoncvs"
221
222 # The directory where the checked out GCC will be placed.
223 DESTINATION="${HOME}/dev/gcc"
224 # The relative path from the top of the source tree to the 
225 # object directory.
226 OBJDIR="objdir"
227
228 # The file where information will be logged.
229 LOGFILE=${HOME}/build-gcc.$$.log
230 # The file where the tarred up sources will be placed.
231 TARFILE="${HOME}/dev/gcc.tgz"
232
233 # Options to pass to configure.
234 CONFIGURE_OPTIONS=
235 # The `make' program.
236 MAKE=${MAKE:-make}
237 # Options to pass to make.
238 MAKE_BOOTSTRAP_OPTIONS=
239
240 # Modes of operation
241 BOOTSTRAP=0
242 CHECKOUT=0
243 CONFIGURE=0
244 EXPORT=0
245 INSTALL=0
246 TEST=0
247 UPDATE=0
248
249 ########################################################################
250 # Main Program
251 ########################################################################
252
253 # Parse the options.
254 while getopts "c:d:m:o:p:t:u:" ARG; do
255     case $ARG in
256     c)    CONFIGURE_OPTIONS="${OPTARG}";;
257     d)    DESTINATION="${OPTARG}";;
258     m)    MAKE_BOOTSTRAP_OPTIONS="${OPTARG}";;
259     o)    OBJDIR="${OPTARG}";;
260     p)    CVS_PROTOCOL="${OPTARG}";;
261     t)    CVS_TARGFILE="${OPTARG}";;
262     u)    CVS_USERNAME="${OPTARG}";;
263     \?)   usage;;
264     esac
265 done
266 shift `expr ${OPTIND} - 1`
267
268 # Handle the major modes.
269 while [ $# -ne 0 ]; do
270     case $1 in
271     bootstrap) BOOTSTRAP=1;;
272     build)    CONFIGURE=1; BOOTSTRAP=1;;
273     checkout) CHECKOUT=1;;
274     configure) CONFIGURE=1;;
275     export)   EXPORT=1;;
276     install)  INSTALL=1;;
277     test)     TEST=1;;
278     update)   UPDATE=1;;
279     *)        usage;;
280     esac
281     shift
282 done
283
284 # Check the arguments for sanity.
285 if [ ${CHECKOUT} -ne 0 ] && [ ${UPDATE} -ne 0 ]; then
286     error "Cannot checkout and update simultaneously"
287 fi
288
289 # Remove any old logfiles.
290 rm -f ${LOGFILE}
291 # Tell the user where to find the logfile.
292 echo "gcc_build: The logfile for this run is ${LOGFILE}"
293
294 # Checkout the tree.
295 if [ ${CHECKOUT} -ne 0 ]; then
296     checkout_gcc
297 elif [ ${UPDATE} -ne 0 ]; then
298     update_gcc
299 fi
300
301 # Configure to build the tree.
302 if [ ${CONFIGURE} -ne 0 ]; then
303     configure_gcc
304 fi
305
306 # Bootstrap the compiler.
307 if [ ${BOOTSTRAP} -ne 0 ]; then
308     bootstrap_gcc
309 fi
310
311 # Test the compiler
312 if [ ${TEST} -ne 0 ]; then
313     test_gcc
314 fi
315
316 # Install the compiler.
317 if [ ${INSTALL} -ne 0 ]; then
318     install_gcc
319 fi
320
321 # Export the sources
322 if [ ${EXPORT} -ne 0 ]; then
323     export_gcc
324 fi