1 #!/bin/sh
   2 
   3 #
   4 # Copyright (c) 2007, 2011, Oracle and/or its affiliates. All rights reserved.
   5 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   6 #
   7 # This code is free software; you can redistribute it and/or modify it
   8 # under the terms of the GNU General Public License version 2 only, as
   9 # published by the Free Software Foundation.  Oracle designates this
  10 # particular file as subject to the "Classpath" exception as provided
  11 # by Oracle in the LICENSE file that accompanied this code.
  12 #
  13 # This code is distributed in the hope that it will be useful, but WITHOUT
  14 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  15 # FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  16 # version 2 for more details (a copy is included in the LICENSE file that
  17 # accompanied this code).
  18 #
  19 # You should have received a copy of the GNU General Public License version
  20 # 2 along with this work; if not, write to the Free Software Foundation,
  21 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  22 #
  23 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  24 # or visit www.oracle.com if you need additional information or have any
  25 # questions.
  26 #
  27 
  28 
  29 #############################################################################
  30 #
  31 # Generic build profile.sh for all platforms, works in bash, sh, and ksh.
  32 #
  33 # Copy this file to your own area, and edit it to suit your needs.
  34 #
  35 # Ideally you either won't need to set the ALT_* variables because the
  36 #   build system will find what it needs through system provided paths
  37 #   or environment variables, or you have installed the component in the
  38 #   recommended default path.
  39 #
  40 # If you find yourself forced to set an ALT_* environment variable and
  41 #   suspect we could have figured it out automatically, please let us know.
  42 #
  43 # Most ALT_* directory defaults are based on being in the parent directory in
  44 #    ALT_SLASH_JAVA, so it's possible to create for example a "C:/jdk6"
  45 #    directory, assign that to ALT_SLASH_JAVA, and place all the components
  46 #    in that directory. This could also minimize the ALT_* environment
  47 #    variables you need to set.
  48 #
  49 ########
  50 #
  51 # Assumes basic unix utilities are in the PATH already (uname, hostname, etc.).
  52 #
  53 # On Windows, assumes PROCESSOR_IDENTIFIER, VS100COMNTOOLS,
  54 #   SYSTEMROOT (or SystemRoot), COMPUTERNAME (or hostname works), and
  55 #   USERNAME is defined in the environment.
  56 #   This profile does not rely on using vcvars32.bat and 64bit Setup.bat.
  57 #   Uses CYGWIN cygpath to make sure paths are space-free.
  58 #
  59 # The JDK Makefiles may change in the future, making some of these
  60 #   settings unnecessary or redundant.
  61 #
  62 # This is a working example, but may or may not work on all systems.
  63 #
  64 #############################################################################
  65 #
  66 # WARNING: This file will clobber the value of some environment variables.
  67 #
  68 # Sets up these environment variables for doing JDK builds:
  69 #    USERNAME
  70 #    COMPUTERNAME
  71 #    PATH
  72 #    Windows Only:
  73 #      LIB
  74 #      INCLUDE
  75 #      PS1
  76 #      SHELL
  77 #
  78 # Attempts to set these variables for the JDK builds:           
  79 #    ALT_COMPILER_PATH
  80 #    ALT_BOOTDIR
  81 #    Windows Only:
  82 #      ALT_UNIXCOMMAND_PATH
  83 #      ALT_DXSDK_PATH
  84 #      ALT_MSVCRNN_DLL_PATH
  85 #
  86 #############################################################################
  87 #
  88 # Keep in mind that at this point, we are running in some kind of shell
  89 #   (sh, ksh, or bash). We don't know if it's solaris, linux, or windows 
  90 #   CYGWIN. We need to figure that out.
  91 
  92 # Find user name
  93 if [ "${USERNAME}" = "" ] ; then
  94     USERNAME="${LOGNAME}"
  95 fi
  96 if [ "${USERNAME}" = "" ] ; then
  97     USERNAME="${USER}"
  98 fi
  99 export USERNAME
 100 
 101 # Find machine name
 102 if [ "${COMPUTERNAME}" = "" ] ; then
 103     COMPUTERNAME="$(hostname)"
 104 fi
 105 export COMPUTERNAME
 106 
 107 # Boot jdk
 108 bootjdk=jdk1.6.0
 109 importjdk=jdk1.7.0
 110 
 111 # Uses 'uname -s', but only expect SunOS or Linux, assume Windows otherwise.
 112 osname=$(uname -s)
 113 if [ "${osname}" = SunOS ] ; then
 114   
 115   # System place where JDK installed images are stored?
 116   jdk_instances=/usr/jdk/instances
 117 
 118   # Get the Sun Studio compilers (and latest patches for them too)
 119   if [ "${ALT_COMPILER_PATH}" = "" ] ; then
 120     ALT_COMPILER_PATH=/opt/SUNWspro/bin
 121     export ALT_COMPILER_PATH
 122   fi
 123   if [ ! -d ${ALT_COMPILER_PATH} ] ; then
 124     echo "WARNING: Cannot access ALT_COMPILER_PATH=${ALT_COMPILER_PATH}"
 125   fi
 126   
 127   # Place compiler path early in PATH to avoid 'cc' conflicts.
 128   path4sdk=${ALT_COMPILER_PATH}:/usr/ccs/bin:/usr/ccs/lib:/usr/bin:/bin:/usr/sfw/bin
 129 
 130   # Make sure these are unset
 131   unset JAVA_HOME
 132   unset LD_LIBRARY_PATH
 133 
 134   # Build in C locale
 135   LANG=C
 136   export LANG
 137   LC_ALL=C
 138   export LC_ALL
 139 
 140   umask 002
 141 
 142 elif [ "${osname}" = Linux ] ; then
 143   
 144   # System place where JDK installed images are stored?
 145   jdk_instances=/opt/java
 146     
 147   # Use compilers from /usr/bin
 148   path4sdk=/usr/bin:/bin:/usr/sbin:/sbin
 149 
 150   # Make sure these are unset
 151   unset JAVA_HOME
 152   unset LD_LIBRARY_PATH
 153 
 154   # Build in C locale
 155   LANG=C
 156   export LANG
 157   LC_ALL=C
 158   export LC_ALL
 159 
 160   umask 002
 161 
 162 else
 163 
 164   # System place where JDK installed images are stored?
 165   jdk_instances="C:"
 166 
 167   # Windows: Differs on CYGWIN and the compiler available.
 168   #   Also, blanks in pathnames gives make headaches, so anything placed
 169   #   in any ALT_* variable should be the short windows DOS names.
 170    
 171   # Check CYGWIN (should have already been done)
 172   #   Assumption here is that you are in a shell window via cygwin.
 173   proc_arch=`echo "${PROCESSOR_IDENTIFIER}" | expand | cut -d' ' -f1 | sed -e 's@x86@X86@g' -e 's@Intel64@X64@g' -e 's@em64t@X64@g' -e 's@EM64T@X64@g' -e 's@amd64@X64@g' -e 's@AMD64@X64@g' -e 's@ia64@IA64@g'`
 174   if [ "${proc_arch}" = "X64" ] ; then
 175     windows_arch=amd64
 176   else
 177     windows_arch=i586
 178   fi
 179   # We need to check if we are running a CYGWIN shell
 180   if [ "$(uname -a | fgrep Cygwin)" != "" -a -f /bin/cygpath ] ; then
 181     # For CYGWIN, uname will have "Cygwin" in it, and /bin/cygpath should exist
 182     # Utility to convert to short pathnames without spaces
 183     cygpath="/usr/bin/cygpath -a -m -s"
 184     # Most unix utilities are in the /usr/bin
 185     unixcommand_path="/usr/bin"
 186     # Make the prompt tell you CYGWIN
 187     export PS1="CYGWIN:${COMPUTERNAME}:${USERNAME}[\!] "
 188   else
 189     echo "ERROR: Cannot find CYGWIN on this machine"
 190     exit 1
 191   fi
 192   if [ "${ALT_UNIXCOMMAND_PATH}" != "" ] ; then
 193     unixcommand_path=${ALT_UNIXCOMMAND_PATH}
 194   fi
 195     
 196   # Default shell
 197   export SHELL="${unixcommand_path}/sh"
 198 
 199   # Setup path system (verify this is right)
 200   if [ "${SystemRoot}" != "" ] ; then
 201     sys_root=$(${cygpath} "${SystemRoot}")
 202   elif [ "${SYSTEMROOT}" != "" ] ; then
 203     sys_root=$(${cygpath} "${SYSTEMROOT}")
 204   else
 205     sys_root=$(${cygpath} "C:/WINNT")
 206   fi
 207   path4sdk="${unixcommand_path};${sys_root}/system32;${sys_root};${sys_root}/System32/Wbem"
 208   if [ ! -d "${sys_root}" ] ; then
 209     echo "WARNING: No system root found at: ${sys_root}"
 210   fi
 211 
 212   # Compiler setup (nasty part)
 213   #   NOTE: You can use vcvars32.bat to set PATH, LIB, and INCLUDE.
 214   #   NOTE: CYGWIN has a link.exe too, make sure the compilers are first
 215 
 216   # Use supplied vsvars.sh
 217   repo=`hg root`
 218   if [ -f "${repo}/make/scripts/vsvars.sh" ] ; then
 219     eval `sh ${repo}/make/scripts/vsvars.sh -v10`
 220   elif [ -f "${repo}/../make/scripts/vsvars.sh" ] ; then
 221     eval `sh ${repo}/../make/scripts/vsvars.sh -v10`
 222   else
 223     echo "WARNING: No make/scripts/vsvars.sh file found"
 224   fi
 225     
 226 fi
 227 
 228 # Get the previous JDK to be used to bootstrap the build
 229 if [ "${ALT_BOOTDIR}" = "" ] ; then
 230   ALT_BOOTDIR=${jdk_instances}/${bootjdk}
 231   export ALT_BOOTDIR
 232 fi
 233 if [ ! -d ${ALT_BOOTDIR} ] ; then
 234   echo "WARNING: Cannot access ALT_BOOTDIR=${ALT_BOOTDIR}"
 235 fi
 236 
 237 # Get the import JDK to be used to get hotspot VM if not built
 238 if [ "${ALT_JDK_IMPORT_PATH}" = "" -a -d ${jdk_instances}/${importjdk} ] ; then
 239   ALT_JDK_IMPORT_PATH=${jdk_instances}/${importjdk}
 240   export ALT_JDK_IMPORT_PATH
 241 fi
 242 
 243 # Export PATH setting
 244 PATH="${path4sdk}"
 245 export PATH
 246 
 247 # Export variables required for Zero
 248 if [ "${SHARK_BUILD}" = true ] ; then
 249   ZERO_BUILD=true
 250   export ZERO_BUILD
 251 fi
 252 if [ "${ZERO_BUILD}" = true ] ; then
 253   # ZERO_LIBARCH is the name of the architecture-specific
 254   # subdirectory under $JAVA_HOME/jre/lib
 255   arch=$(uname -m)
 256   case "${arch}" in
 257     x86_64)  ZERO_LIBARCH=amd64     ;;
 258     i?86)    ZERO_LIBARCH=i386      ;;
 259     sparc64) ZERO_LIBARCH=sparcv9   ;;
 260     arm*)    ZERO_LIBARCH=arm       ;;
 261     *)       ZERO_LIBARCH="$(arch)"
 262   esac
 263   export ZERO_LIBARCH
 264 
 265   # ARCH_DATA_MODEL is the number of bits in a pointer
 266   case "${ZERO_LIBARCH}" in
 267     i386|ppc|s390|sparc|arm)
 268       ARCH_DATA_MODEL=32
 269       ;;
 270     amd64|ppc64|s390x|sparcv9|ia64|alpha)
 271       ARCH_DATA_MODEL=64
 272       ;;
 273     *)
 274       echo "ERROR: Unable to determine ARCH_DATA_MODEL for ${ZERO_LIBARCH}"
 275       exit 1
 276   esac
 277   export ARCH_DATA_MODEL
 278 
 279   # ZERO_ENDIANNESS is the endianness of the processor
 280   case "${ZERO_LIBARCH}" in
 281     i386|amd64|ia64)
 282       ZERO_ENDIANNESS=little
 283       ;;
 284     ppc*|s390*|sparc*|alpha)
 285       ZERO_ENDIANNESS=big
 286       ;;
 287     *)
 288       echo "ERROR: Unable to determine ZERO_ENDIANNESS for ${ZERO_LIBARCH}"
 289       exit 1
 290   esac
 291   export ZERO_ENDIANNESS
 292 
 293   # ZERO_ARCHDEF is used to enable architecture-specific code
 294   case "${ZERO_LIBARCH}" in
 295     i386)   ZERO_ARCHDEF=IA32  ;;
 296     ppc*)   ZERO_ARCHDEF=PPC   ;;
 297     s390*)  ZERO_ARCHDEF=S390  ;;
 298     sparc*) ZERO_ARCHDEF=SPARC ;;
 299     *)      ZERO_ARCHDEF=$(echo "${ZERO_LIBARCH}" | tr a-z A-Z)
 300   esac
 301   export ZERO_ARCHDEF
 302 
 303   # ZERO_ARCHFLAG tells the compiler which mode to build for
 304   case "${ZERO_LIBARCH}" in
 305     s390)
 306       ZERO_ARCHFLAG="-m31"
 307       ;;
 308     *)
 309       ZERO_ARCHFLAG="-m${ARCH_DATA_MODEL}"
 310   esac
 311   export ZERO_ARCHFLAG
 312 
 313   # LIBFFI_CFLAGS and LIBFFI_LIBS tell the compiler how to compile and
 314   # link against libffi
 315   pkgconfig=$(which pkg-config 2>/dev/null)
 316   if [ -x "${pkgconfig}" ] ; then
 317     if [ "${LIBFFI_CFLAGS}" = "" ] ; then
 318       LIBFFI_CFLAGS=$("${pkgconfig}" --cflags libffi)
 319     fi
 320     if [ "${LIBFFI_LIBS}" = "" ] ; then
 321       LIBFFI_LIBS=$("${pkgconfig}" --libs libffi)
 322     fi
 323   fi
 324   if [ "${LIBFFI_LIBS}" = "" ] ; then
 325       LIBFFI_LIBS="-lffi"
 326   fi
 327   export LIBFFI_CFLAGS
 328   export LIBFFI_LIBS
 329 
 330   # LLVM_CFLAGS, LLVM_LDFLAGS and LLVM_LIBS tell the compiler how to
 331   # compile and link against LLVM
 332   if [ "${SHARK_BUILD}" = true ] ; then
 333     if [ "${LLVM_CONFIG}" = "" ] ; then
 334       LLVM_CONFIG=$(which llvm-config 2>/dev/null)
 335     fi
 336     if [ ! -x "${LLVM_CONFIG}" ] ; then
 337       echo "ERROR: Unable to locate llvm-config"
 338       exit 1
 339     fi
 340     llvm_components="jit engine nativecodegen"
 341 
 342     unset LLVM_CFLAGS
 343     for flag in $("${LLVM_CONFIG}" --cxxflags $llvm_components); do
 344       if echo "${flag}" | grep -q '^-[ID]'; then
 345         if [ "${flag}" != "-D_DEBUG" ] ; then
 346           if [ "${LLVM_CFLAGS}" != "" ] ; then
 347             LLVM_CFLAGS="${LLVM_CFLAGS} "
 348           fi
 349           LLVM_CFLAGS="${LLVM_CFLAGS}${flag}"
 350         fi
 351       fi
 352     done
 353     llvm_version=$("${LLVM_CONFIG}" --version | sed 's/\.//; s/svn.*//')
 354     LLVM_CFLAGS="${LLVM_CFLAGS} -DSHARK_LLVM_VERSION=${llvm_version}"
 355 
 356     unset LLVM_LDFLAGS
 357     for flag in $("${LLVM_CONFIG}" --ldflags $llvm_components); do
 358       if echo "${flag}" | grep -q '^-L'; then
 359         if [ "${LLVM_LDFLAGS}" != "" ] ; then
 360           LLVM_LDFLAGS="${LLVM_LDFLAGS} "
 361         fi
 362         LLVM_LDFLAGS="${LLVM_LDFLAGS}${flag}"
 363       fi
 364     done
 365 
 366     unset LLVM_LIBS
 367     for flag in $("${LLVM_CONFIG}" --libs $llvm_components); do
 368       if echo "${flag}" | grep -q '^-l'; then
 369         if [ "${LLVM_LIBS}" != "" ] ; then
 370           LLVM_LIBS="${LLVM_LIBS} "
 371         fi
 372         LLVM_LIBS="${LLVM_LIBS}${flag}"
 373       fi
 374     done
 375 
 376     export LLVM_CFLAGS
 377     export LLVM_LDFLAGS
 378     export LLVM_LIBS
 379   fi
 380 fi