annotate make/linux/build.sh @ 196:d1605aabd0a1 jdk7-b30

6719955: Update copyright year Summary: Update copyright year for files that have been modified in 2008 Reviewed-by: ohair, tbell
author xdono
date Wed, 02 Jul 2008 12:55:16 -0700
parents a294fd0c4b38
children c18cbe5936b8
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 #! /bin/sh
a61af66fc99e Initial load
duke
parents:
diff changeset
2 #
196
d1605aabd0a1 6719955: Update copyright year
xdono
parents: 91
diff changeset
3 # Copyright 1999-2008 Sun Microsystems, Inc. All Rights Reserved.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
4 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
a61af66fc99e Initial load
duke
parents:
diff changeset
5 #
a61af66fc99e Initial load
duke
parents:
diff changeset
6 # This code is free software; you can redistribute it and/or modify it
a61af66fc99e Initial load
duke
parents:
diff changeset
7 # under the terms of the GNU General Public License version 2 only, as
a61af66fc99e Initial load
duke
parents:
diff changeset
8 # published by the Free Software Foundation.
a61af66fc99e Initial load
duke
parents:
diff changeset
9 #
a61af66fc99e Initial load
duke
parents:
diff changeset
10 # This code is distributed in the hope that it will be useful, but WITHOUT
a61af66fc99e Initial load
duke
parents:
diff changeset
11 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
a61af66fc99e Initial load
duke
parents:
diff changeset
12 # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
a61af66fc99e Initial load
duke
parents:
diff changeset
13 # version 2 for more details (a copy is included in the LICENSE file that
a61af66fc99e Initial load
duke
parents:
diff changeset
14 # accompanied this code).
a61af66fc99e Initial load
duke
parents:
diff changeset
15 #
a61af66fc99e Initial load
duke
parents:
diff changeset
16 # You should have received a copy of the GNU General Public License version
a61af66fc99e Initial load
duke
parents:
diff changeset
17 # 2 along with this work; if not, write to the Free Software Foundation,
a61af66fc99e Initial load
duke
parents:
diff changeset
18 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
a61af66fc99e Initial load
duke
parents:
diff changeset
19 #
a61af66fc99e Initial load
duke
parents:
diff changeset
20 # Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
a61af66fc99e Initial load
duke
parents:
diff changeset
21 # CA 95054 USA or visit www.sun.com if you need additional information or
a61af66fc99e Initial load
duke
parents:
diff changeset
22 # have any questions.
a61af66fc99e Initial load
duke
parents:
diff changeset
23 #
a61af66fc99e Initial load
duke
parents:
diff changeset
24 #
a61af66fc99e Initial load
duke
parents:
diff changeset
25
a61af66fc99e Initial load
duke
parents:
diff changeset
26 # Make sure the variable JAVA_HOME is set before running this script.
a61af66fc99e Initial load
duke
parents:
diff changeset
27
a61af66fc99e Initial load
duke
parents:
diff changeset
28 set -u
a61af66fc99e Initial load
duke
parents:
diff changeset
29
a61af66fc99e Initial load
duke
parents:
diff changeset
30
a61af66fc99e Initial load
duke
parents:
diff changeset
31 if [ $# != 2 ]; then
a61af66fc99e Initial load
duke
parents:
diff changeset
32 echo "Usage : $0 Build_Options Location"
a61af66fc99e Initial load
duke
parents:
diff changeset
33 echo "Build Options : debug or optimized or basicdebug or basic or clean"
a61af66fc99e Initial load
duke
parents:
diff changeset
34 echo "Location : specify any workspace which has gamma sources"
a61af66fc99e Initial load
duke
parents:
diff changeset
35 exit 1
a61af66fc99e Initial load
duke
parents:
diff changeset
36 fi
a61af66fc99e Initial load
duke
parents:
diff changeset
37
a61af66fc99e Initial load
duke
parents:
diff changeset
38 # Just in case:
a61af66fc99e Initial load
duke
parents:
diff changeset
39 case ${JAVA_HOME} in
a61af66fc99e Initial load
duke
parents:
diff changeset
40 /*) true;;
a61af66fc99e Initial load
duke
parents:
diff changeset
41 ?*) JAVA_HOME=`( cd $JAVA_HOME; pwd )`;;
a61af66fc99e Initial load
duke
parents:
diff changeset
42 esac
a61af66fc99e Initial load
duke
parents:
diff changeset
43
a61af66fc99e Initial load
duke
parents:
diff changeset
44 case `uname -m` in
a61af66fc99e Initial load
duke
parents:
diff changeset
45 i386|i486|i586|i686)
a61af66fc99e Initial load
duke
parents:
diff changeset
46 mach=i386
a61af66fc99e Initial load
duke
parents:
diff changeset
47 ;;
a61af66fc99e Initial load
duke
parents:
diff changeset
48 *)
a61af66fc99e Initial load
duke
parents:
diff changeset
49 echo "Unsupported machine: " `uname -m`
a61af66fc99e Initial load
duke
parents:
diff changeset
50 exit 1
a61af66fc99e Initial load
duke
parents:
diff changeset
51 ;;
a61af66fc99e Initial load
duke
parents:
diff changeset
52 esac
a61af66fc99e Initial load
duke
parents:
diff changeset
53
a61af66fc99e Initial load
duke
parents:
diff changeset
54 if [ "${JAVA_HOME}" = "" -o ! -d "${JAVA_HOME}" -o ! -d ${JAVA_HOME}/jre/lib/${mach} ]; then
a61af66fc99e Initial load
duke
parents:
diff changeset
55 echo "JAVA_HOME needs to be set to a valid JDK path"
a61af66fc99e Initial load
duke
parents:
diff changeset
56 echo "ksh : export JAVA_HOME=/net/tetrasparc/export/gobi/JDK1.2_fcs_V/linux"
a61af66fc99e Initial load
duke
parents:
diff changeset
57 echo "csh : setenv JAVA_HOME /net/tetrasparc/export/gobi/JDK1.2_fcs_V/linux"
a61af66fc99e Initial load
duke
parents:
diff changeset
58 exit 1
a61af66fc99e Initial load
duke
parents:
diff changeset
59 fi
a61af66fc99e Initial load
duke
parents:
diff changeset
60
a61af66fc99e Initial load
duke
parents:
diff changeset
61
a61af66fc99e Initial load
duke
parents:
diff changeset
62 LD_LIBRARY_PATH=${JAVA_HOME}/jre/lib/`uname -p`:\
a61af66fc99e Initial load
duke
parents:
diff changeset
63 ${JAVA_HOME}/jre/lib/`uname -p`/native_threads:${LD_LIBRARY_PATH-.}
a61af66fc99e Initial load
duke
parents:
diff changeset
64
a61af66fc99e Initial load
duke
parents:
diff changeset
65 # This is necessary as long as we are using the old launcher
a61af66fc99e Initial load
duke
parents:
diff changeset
66 # with the new distribution format:
a61af66fc99e Initial load
duke
parents:
diff changeset
67 CLASSPATH=${JAVA_HOME}/jre/lib/rt.jar:${CLASSPATH-.}
a61af66fc99e Initial load
duke
parents:
diff changeset
68
a61af66fc99e Initial load
duke
parents:
diff changeset
69
a61af66fc99e Initial load
duke
parents:
diff changeset
70 for gm in gmake gnumake
a61af66fc99e Initial load
duke
parents:
diff changeset
71 do
a61af66fc99e Initial load
duke
parents:
diff changeset
72 if [ "${GNUMAKE-}" != "" ]; then break; fi
a61af66fc99e Initial load
duke
parents:
diff changeset
73 ($gm --version >/dev/null) 2>/dev/null && GNUMAKE=$gm
a61af66fc99e Initial load
duke
parents:
diff changeset
74 done
a61af66fc99e Initial load
duke
parents:
diff changeset
75 : ${GNUMAKE:?'Cannot locate the gnumake program. Stop.'}
a61af66fc99e Initial load
duke
parents:
diff changeset
76
a61af66fc99e Initial load
duke
parents:
diff changeset
77
a61af66fc99e Initial load
duke
parents:
diff changeset
78 echo "### ENVIRONMENT SETTINGS:"
a61af66fc99e Initial load
duke
parents:
diff changeset
79 export JAVA_HOME ; echo "JAVA_HOME=$JAVA_HOME"
a61af66fc99e Initial load
duke
parents:
diff changeset
80 export LD_LIBRARY_PATH ; echo "LD_LIBRARY_PATH=$LD_LIBRARY_PATH"
a61af66fc99e Initial load
duke
parents:
diff changeset
81 export CLASSPATH ; echo "CLASSPATH=$CLASSPATH"
a61af66fc99e Initial load
duke
parents:
diff changeset
82 export GNUMAKE ; echo "GNUMAKE=$GNUMAKE"
a61af66fc99e Initial load
duke
parents:
diff changeset
83 echo "###"
a61af66fc99e Initial load
duke
parents:
diff changeset
84
a61af66fc99e Initial load
duke
parents:
diff changeset
85 Build_Options=$1
a61af66fc99e Initial load
duke
parents:
diff changeset
86 Location=$2
a61af66fc99e Initial load
duke
parents:
diff changeset
87
a61af66fc99e Initial load
duke
parents:
diff changeset
88 case ${Location} in
a61af66fc99e Initial load
duke
parents:
diff changeset
89 /*) true;;
a61af66fc99e Initial load
duke
parents:
diff changeset
90 ?*) Location=`(cd ${Location}; pwd)`;;
a61af66fc99e Initial load
duke
parents:
diff changeset
91 esac
a61af66fc99e Initial load
duke
parents:
diff changeset
92
a61af66fc99e Initial load
duke
parents:
diff changeset
93 echo \
91
a294fd0c4b38 6583644: Move all managed/SCCS files out of 'build' into 'make' directory
kamg
parents: 0
diff changeset
94 ${GNUMAKE} -f ${Location}/make/linux/Makefile $Build_Options GAMMADIR=${Location}
a294fd0c4b38 6583644: Move all managed/SCCS files out of 'build' into 'make' directory
kamg
parents: 0
diff changeset
95 ${GNUMAKE} -f ${Location}/make/linux/Makefile $Build_Options GAMMADIR=${Location}