make/linux/build.sh

Wed, 11 Jan 2012 17:34:02 -0500

author
phh
date
Wed, 11 Jan 2012 17:34:02 -0500
changeset 3427
94ec88ca68e2
parent 3154
075ea0ed9e7c
permissions
-rw-r--r--

7115199: Add event tracing hooks and Java Flight Recorder infrastructure
Summary: Added a nop tracing infrastructure, JFR makefile changes and other infrastructure used only by JFR.
Reviewed-by: acorn, sspitsyn
Contributed-by: markus.gronlund@oracle.com

duke@435 1 #! /bin/sh
duke@435 2 #
kvn@3154 3 # Copyright (c) 1999, 2011, Oracle and/or its affiliates. All rights reserved.
duke@435 4 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
duke@435 5 #
duke@435 6 # This code is free software; you can redistribute it and/or modify it
duke@435 7 # under the terms of the GNU General Public License version 2 only, as
duke@435 8 # published by the Free Software Foundation.
duke@435 9 #
duke@435 10 # This code is distributed in the hope that it will be useful, but WITHOUT
duke@435 11 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
duke@435 12 # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
duke@435 13 # version 2 for more details (a copy is included in the LICENSE file that
duke@435 14 # accompanied this code).
duke@435 15 #
duke@435 16 # You should have received a copy of the GNU General Public License version
duke@435 17 # 2 along with this work; if not, write to the Free Software Foundation,
duke@435 18 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
duke@435 19 #
trims@1907 20 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
trims@1907 21 # or visit www.oracle.com if you need additional information or have any
trims@1907 22 # questions.
duke@435 23 #
duke@435 24 #
duke@435 25
duke@435 26 # Make sure the variable JAVA_HOME is set before running this script.
duke@435 27
duke@435 28 set -u
duke@435 29
duke@435 30
duke@435 31 if [ $# != 2 ]; then
duke@435 32 echo "Usage : $0 Build_Options Location"
duke@435 33 echo "Build Options : debug or optimized or basicdebug or basic or clean"
duke@435 34 echo "Location : specify any workspace which has gamma sources"
duke@435 35 exit 1
duke@435 36 fi
duke@435 37
duke@435 38 # Just in case:
duke@435 39 case ${JAVA_HOME} in
duke@435 40 /*) true;;
duke@435 41 ?*) JAVA_HOME=`( cd $JAVA_HOME; pwd )`;;
duke@435 42 esac
duke@435 43
duke@435 44 case `uname -m` in
duke@435 45 i386|i486|i586|i686)
duke@435 46 mach=i386
duke@435 47 ;;
kvn@3154 48 x86_64)
kvn@3154 49 mach=amd64
kvn@3154 50 ;;
duke@435 51 *)
duke@435 52 echo "Unsupported machine: " `uname -m`
duke@435 53 exit 1
duke@435 54 ;;
duke@435 55 esac
duke@435 56
duke@435 57 if [ "${JAVA_HOME}" = "" -o ! -d "${JAVA_HOME}" -o ! -d ${JAVA_HOME}/jre/lib/${mach} ]; then
duke@435 58 echo "JAVA_HOME needs to be set to a valid JDK path"
duke@435 59 echo "ksh : export JAVA_HOME=/net/tetrasparc/export/gobi/JDK1.2_fcs_V/linux"
duke@435 60 echo "csh : setenv JAVA_HOME /net/tetrasparc/export/gobi/JDK1.2_fcs_V/linux"
duke@435 61 exit 1
duke@435 62 fi
duke@435 63
duke@435 64
duke@435 65 LD_LIBRARY_PATH=${JAVA_HOME}/jre/lib/`uname -p`:\
duke@435 66 ${JAVA_HOME}/jre/lib/`uname -p`/native_threads:${LD_LIBRARY_PATH-.}
duke@435 67
duke@435 68 # This is necessary as long as we are using the old launcher
duke@435 69 # with the new distribution format:
duke@435 70 CLASSPATH=${JAVA_HOME}/jre/lib/rt.jar:${CLASSPATH-.}
duke@435 71
duke@435 72
duke@435 73 for gm in gmake gnumake
duke@435 74 do
duke@435 75 if [ "${GNUMAKE-}" != "" ]; then break; fi
duke@435 76 ($gm --version >/dev/null) 2>/dev/null && GNUMAKE=$gm
duke@435 77 done
duke@435 78 : ${GNUMAKE:?'Cannot locate the gnumake program. Stop.'}
duke@435 79
duke@435 80
duke@435 81 echo "### ENVIRONMENT SETTINGS:"
duke@435 82 export JAVA_HOME ; echo "JAVA_HOME=$JAVA_HOME"
duke@435 83 export LD_LIBRARY_PATH ; echo "LD_LIBRARY_PATH=$LD_LIBRARY_PATH"
duke@435 84 export CLASSPATH ; echo "CLASSPATH=$CLASSPATH"
duke@435 85 export GNUMAKE ; echo "GNUMAKE=$GNUMAKE"
duke@435 86 echo "###"
duke@435 87
duke@435 88 Build_Options=$1
duke@435 89 Location=$2
duke@435 90
duke@435 91 case ${Location} in
duke@435 92 /*) true;;
duke@435 93 ?*) Location=`(cd ${Location}; pwd)`;;
duke@435 94 esac
duke@435 95
duke@435 96 echo \
kamg@526 97 ${GNUMAKE} -f ${Location}/make/linux/Makefile $Build_Options GAMMADIR=${Location}
kamg@526 98 ${GNUMAKE} -f ${Location}/make/linux/Makefile $Build_Options GAMMADIR=${Location}

mercurial