1 #!/bin/sh
   2 
   3 #
   4 # Copyright (c) 2007, 2010, 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, VS71COMNTOOLS,
  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_MSVCRT_DLL_PATH
  85 #      ALT_MSVCR71_DLL_PATH
  86 #
  87 #############################################################################
  88 #
  89 # Keep in mind that at this point, we are running in some kind of shell
  90 #   (sh, ksh, or bash). We don't know if it's solaris, linux, or windows 
  91 #   CYGWIN. We need to figure that out.
  92 
  93 # Find user name
  94 if [ "${USERNAME}" = "" ] ; then
  95     USERNAME="${LOGNAME}"
  96 fi
  97 if [ "${USERNAME}" = "" ] ; then
  98     USERNAME="${USER}"
  99 fi
 100 export USERNAME
 101 
 102 # Find machine name
 103 if [ "${COMPUTERNAME}" = "" ] ; then
 104     COMPUTERNAME="$(hostname)"
 105 fi
 106 export COMPUTERNAME
 107 
 108 # Boot jdk
 109 bootjdk=jdk1.6.0
 110 importjdk=jdk1.7.0
 111 
 112 # Uses 'uname -s', but only expect SunOS or Linux, assume Windows otherwise.
 113 osname=$(uname -s)
 114 if [ "${osname}" = SunOS ] ; then
 115   
 116   # System place where JDK installed images are stored?
 117   jdk_instances=/usr/jdk/instances
 118 
 119   # Get the Sun Studio compilers (and latest patches for them too)
 120   if [ "${ALT_COMPILER_PATH}" = "" ] ; then
 121     ALT_COMPILER_PATH=/opt/SUNWspro/bin
 122     export ALT_COMPILER_PATH
 123   fi
 124   if [ ! -d ${ALT_COMPILER_PATH} ] ; then
 125     echo "WARNING: Cannot access ALT_COMPILER_PATH=${ALT_COMPILER_PATH}"
 126   fi
 127   
 128   # Place compiler path early in PATH to avoid 'cc' conflicts.
 129   path4sdk=${ALT_COMPILER_PATH}:/usr/ccs/bin:/usr/ccs/lib:/usr/bin:/bin:/usr/sfw/bin
 130 
 131   # Make sure these are unset
 132   unset JAVA_HOME
 133   unset LD_LIBRARY_PATH
 134 
 135   # Build in C locale
 136   LANG=C
 137   export LANG
 138   LC_ALL=C
 139   export LC_ALL
 140 
 141   umask 002
 142 
 143 elif [ "${osname}" = Linux ] ; then
 144   
 145   # System place where JDK installed images are stored?
 146   jdk_instances=/opt/java
 147     
 148   # Use compilers from /usr/bin
 149   path4sdk=/usr/bin:/bin:/usr/sbin:/sbin
 150 
 151   # Make sure these are unset
 152   unset JAVA_HOME
 153   unset LD_LIBRARY_PATH
 154 
 155   # Build in C locale
 156   LANG=C
 157   export LANG
 158   LC_ALL=C
 159   export LC_ALL
 160 
 161   umask 002
 162 
 163 else
 164 
 165   # System place where JDK installed images are stored?
 166   jdk_instances="C:"
 167 
 168   # Windows: Differs on CYGWIN and the compiler available.
 169   #   Also, blanks in pathnames gives make headaches, so anything placed
 170   #   in any ALT_* variable should be the short windows DOS names.
 171    
 172   # Check CYGWIN (should have already been done)
 173   #   Assumption here is that you are in a shell window via cygwin.
 174   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'`
 175   if [ "${proc_arch}" = "X64" ] ; then
 176     windows_arch=amd64
 177   else
 178     windows_arch=i586
 179   fi
 180   # We need to check if we are running a CYGWIN shell
 181   if [ "$(uname -a | fgrep Cygwin)" != "" -a -f /bin/cygpath ] ; then
 182     # For CYGWIN, uname will have "Cygwin" in it, and /bin/cygpath should exist
 183     # Utility to convert to short pathnames without spaces
 184     cygpath="/usr/bin/cygpath -a -m -s"
 185     # Most unix utilities are in the /usr/bin
 186     unixcommand_path="/usr/bin"
 187     # Make the prompt tell you CYGWIN
 188     export PS1="CYGWIN:${COMPUTERNAME}:${USERNAME}[\!] "
 189   else
 190     echo "ERROR: Cannot find CYGWIN on this machine"
 191     exit 1
 192   fi
 193   if [ "${ALT_UNIXCOMMAND_PATH}" != "" ] ; then
 194     unixcommand_path=${ALT_UNIXCOMMAND_PATH}
 195   fi
 196     
 197   # Default shell
 198   export SHELL="${unixcommand_path}/sh"
 199 
 200   # Setup path system (verify this is right)
 201   if [ "${SystemRoot}" != "" ] ; then
 202     sys_root=$(${cygpath} "${SystemRoot}")
 203   elif [ "${SYSTEMROOT}" != "" ] ; then
 204     sys_root=$(${cygpath} "${SYSTEMROOT}")
 205   else
 206     sys_root=$(${cygpath} "C:/WINNT")
 207   fi
 208   path4sdk="${unixcommand_path};${sys_root}/system32;${sys_root};${sys_root}/System32/Wbem"
 209   if [ ! -d "${sys_root}" ] ; then
 210     echo "WARNING: No system root found at: ${sys_root}"
 211   fi
 212 
 213   # Compiler setup (nasty part)
 214   #   NOTE: You can use vcvars32.bat to set PATH, LIB, and INCLUDE.
 215   #   NOTE: CYGWIN has a link.exe too, make sure the compilers are first
 216   if [ "${windows_arch}" = i586 ] ; then
 217     # 32bit Windows compiler settings
 218     # VisualStudio .NET 2003 VC++ 7.1 (VS71COMNTOOLS should be defined)
 219     vs_root=$(${cygpath} "${VS71COMNTOOLS}/../..")
 220     # Fill in PATH, LIB, and INCLUDE (unset all others to make sure)
 221     vc7_root="${vs_root}/Vc7"
 222     compiler_path="${vc7_root}/bin"
 223     platform_sdk="${vc7_root}/PlatformSDK"
 224         
 225     # LIB and INCLUDE must use ; as a separator
 226     include4sdk="${vc7_root}/atlmfc/include"
 227     include4sdk="${include4sdk};${vc7_root}/include"
 228     include4sdk="${include4sdk};${platform_sdk}/include/prerelease"
 229     include4sdk="${include4sdk};${platform_sdk}/include"
 230     include4sdk="${include4sdk};${vs_root}/SDK/v1.1/include"
 231     lib4sdk="${lib4sdk};${vc7_root}/lib"
 232     lib4sdk="${lib4sdk};${platform_sdk}/lib/prerelease"
 233     lib4sdk="${lib4sdk};${platform_sdk}/lib"
 234     lib4sdk="${lib4sdk};${vs_root}/SDK/v1.1/lib"
 235     # Search path and DLL locating path
 236     #   WARNING: CYGWIN has a link.exe too, make sure compilers are first
 237     path4sdk="${vs_root}/Common7/Tools/bin;${path4sdk}"
 238     path4sdk="${vs_root}/SDK/v1.1/bin;${path4sdk}"
 239     path4sdk="${vs_root}/Common7/Tools;${path4sdk}"
 240     path4sdk="${vs_root}/Common7/Tools/bin/prerelease;${path4sdk}"
 241     path4sdk="${vs_root}/Common7/IDE;${path4sdk}"
 242     path4sdk="${compiler_path};${path4sdk}"
 243   elif [ "${windows_arch}" = amd64 ] ; then
 244     # AMD64 64bit Windows compiler settings
 245     if [ "${ALT_DEPLOY_MSSDK}" != "" ] ; then
 246       platform_sdk=${ALT_DEPLOY_MSSDK}
 247     else
 248       platform_sdk=$(${cygpath} "C:/Program Files/Microsoft Platform SDK/")
 249     fi
 250     if [ "${ALT_COMPILER_PATH}" != "" ] ; then
 251       compiler_path=${ALT_COMPILER_PATH}
 252       if [ "${ALT_DEPLOY_MSSDK}" = "" ] ; then
 253         platform_sdk=${ALT_COMPILER_PATH}/../../../..
 254       fi
 255     else
 256       compiler_path="${platform_sdk}/Bin/win64/x86/AMD64"
 257     fi
 258     # LIB and INCLUDE must use ; as a separator
 259     include4sdk="${platform_sdk}/Include"
 260     include4sdk="${include4sdk};${platform_sdk}/Include/crt/sys"
 261     include4sdk="${include4sdk};${platform_sdk}/Include/mfc"
 262     include4sdk="${include4sdk};${platform_sdk}/Include/atl"
 263     include4sdk="${include4sdk};${platform_sdk}/Include/crt"
 264     lib4sdk="${platform_sdk}/Lib/AMD64"
 265     lib4sdk="${lib4sdk};${platform_sdk}/Lib/AMD64/atlmfc"
 266     # Search path and DLL locating path
 267     #   WARNING: CYGWIN has a link.exe too, make sure compilers are first
 268     path4sdk="${platform_sdk}/bin;${path4sdk}"
 269     path4sdk="${compiler_path};${path4sdk}"
 270   fi
 271   # Export LIB and INCLUDE
 272   unset lib
 273   unset Lib
 274   LIB="${lib4sdk}"
 275   export LIB
 276   unset include
 277   unset Include
 278   INCLUDE="${include4sdk}"
 279   export INCLUDE
 280     
 281   # Turn all \\ into /, remove duplicates and trailing /
 282   slash_path="$(echo ${path4sdk} | sed -e 's@\\\\@/@g' -e 's@//@/@g' -e 's@/$@@' -e 's@/;@;@g')"
 283   path4sdk="${slash_path}"
 284    
 285   # Convert path4sdk to cygwin style
 286   path4sdk="$(/usr/bin/cygpath -p ${path4sdk})"
 287 
 288 fi
 289 
 290 # Get the previous JDK to be used to bootstrap the build
 291 if [ "${ALT_BOOTDIR}" = "" ] ; then
 292   ALT_BOOTDIR=${jdk_instances}/${bootjdk}
 293   export ALT_BOOTDIR
 294 fi
 295 if [ ! -d ${ALT_BOOTDIR} ] ; then
 296   echo "WARNING: Cannot access ALT_BOOTDIR=${ALT_BOOTDIR}"
 297 fi
 298 
 299 # Get the import JDK to be used to get hotspot VM if not built
 300 if [ "${ALT_JDK_IMPORT_PATH}" = "" -a -d ${jdk_instances}/${importjdk} ] ; then
 301   ALT_JDK_IMPORT_PATH=${jdk_instances}/${importjdk}
 302   export ALT_JDK_IMPORT_PATH
 303 fi
 304 
 305 # Export PATH setting
 306 PATH="${path4sdk}"
 307 export PATH
 308 
 309 # Export variables required for Zero
 310 if [ "${SHARK_BUILD}" = true ] ; then
 311   ZERO_BUILD=true
 312   export ZERO_BUILD
 313 fi
 314 if [ "${ZERO_BUILD}" = true ] ; then
 315   # ZERO_LIBARCH is the name of the architecture-specific
 316   # subdirectory under $JAVA_HOME/jre/lib
 317   arch=$(uname -m)
 318   case "${arch}" in
 319     x86_64)  ZERO_LIBARCH=amd64     ;;
 320     i?86)    ZERO_LIBARCH=i386      ;;
 321     sparc64) ZERO_LIBARCH=sparcv9   ;;
 322     arm*)    ZERO_LIBARCH=arm       ;;
 323     *)       ZERO_LIBARCH="$(arch)"
 324   esac
 325   export ZERO_LIBARCH
 326 
 327   # ARCH_DATA_MODEL is the number of bits in a pointer
 328   case "${ZERO_LIBARCH}" in
 329     i386|ppc|s390|sparc|arm)
 330       ARCH_DATA_MODEL=32
 331       ;;
 332     amd64|ppc64|s390x|sparcv9|ia64|alpha)
 333       ARCH_DATA_MODEL=64
 334       ;;
 335     *)
 336       echo "ERROR: Unable to determine ARCH_DATA_MODEL for ${ZERO_LIBARCH}"
 337       exit 1
 338   esac
 339   export ARCH_DATA_MODEL
 340 
 341   # ZERO_ENDIANNESS is the endianness of the processor
 342   case "${ZERO_LIBARCH}" in
 343     i386|amd64|ia64)
 344       ZERO_ENDIANNESS=little
 345       ;;
 346     ppc*|s390*|sparc*|alpha)
 347       ZERO_ENDIANNESS=big
 348       ;;
 349     *)
 350       echo "ERROR: Unable to determine ZERO_ENDIANNESS for ${ZERO_LIBARCH}"
 351       exit 1
 352   esac
 353   export ZERO_ENDIANNESS
 354 
 355   # ZERO_ARCHDEF is used to enable architecture-specific code
 356   case "${ZERO_LIBARCH}" in
 357     i386)   ZERO_ARCHDEF=IA32  ;;
 358     ppc*)   ZERO_ARCHDEF=PPC   ;;
 359     s390*)  ZERO_ARCHDEF=S390  ;;
 360     sparc*) ZERO_ARCHDEF=SPARC ;;
 361     *)      ZERO_ARCHDEF=$(echo "${ZERO_LIBARCH}" | tr a-z A-Z)
 362   esac
 363   export ZERO_ARCHDEF
 364 
 365   # ZERO_ARCHFLAG tells the compiler which mode to build for
 366   case "${ZERO_LIBARCH}" in
 367     s390)
 368       ZERO_ARCHFLAG="-m31"
 369       ;;
 370     *)
 371       ZERO_ARCHFLAG="-m${ARCH_DATA_MODEL}"
 372   esac
 373   export ZERO_ARCHFLAG
 374 
 375   # LIBFFI_CFLAGS and LIBFFI_LIBS tell the compiler how to compile and
 376   # link against libffi
 377   pkgconfig=$(which pkg-config 2>/dev/null)
 378   if [ -x "${pkgconfig}" ] ; then
 379     if [ "${LIBFFI_CFLAGS}" = "" ] ; then
 380       LIBFFI_CFLAGS=$("${pkgconfig}" --cflags libffi)
 381     fi
 382     if [ "${LIBFFI_LIBS}" = "" ] ; then
 383       LIBFFI_LIBS=$("${pkgconfig}" --libs libffi)
 384     fi
 385   fi
 386   if [ "${LIBFFI_LIBS}" = "" ] ; then
 387       LIBFFI_LIBS="-lffi"
 388   fi
 389   export LIBFFI_CFLAGS
 390   export LIBFFI_LIBS
 391 
 392   # LLVM_CFLAGS, LLVM_LDFLAGS and LLVM_LIBS tell the compiler how to
 393   # compile and link against LLVM
 394   if [ "${SHARK_BUILD}" = true ] ; then
 395     if [ "${LLVM_CONFIG}" = "" ] ; then
 396       LLVM_CONFIG=$(which llvm-config 2>/dev/null)
 397     fi
 398     if [ ! -x "${LLVM_CONFIG}" ] ; then
 399       echo "ERROR: Unable to locate llvm-config"
 400       exit 1
 401     fi
 402     llvm_components="jit engine nativecodegen"
 403 
 404     unset LLVM_CFLAGS
 405     for flag in $("${LLVM_CONFIG}" --cxxflags $llvm_components); do
 406       if echo "${flag}" | grep -q '^-[ID]'; then
 407         if [ "${flag}" != "-D_DEBUG" ] ; then
 408           if [ "${LLVM_CFLAGS}" != "" ] ; then
 409             LLVM_CFLAGS="${LLVM_CFLAGS} "
 410           fi
 411           LLVM_CFLAGS="${LLVM_CFLAGS}${flag}"
 412         fi
 413       fi
 414     done
 415     llvm_version=$("${LLVM_CONFIG}" --version | sed 's/\.//; s/svn.*//')
 416     LLVM_CFLAGS="${LLVM_CFLAGS} -DSHARK_LLVM_VERSION=${llvm_version}"
 417 
 418     unset LLVM_LDFLAGS
 419     for flag in $("${LLVM_CONFIG}" --ldflags $llvm_components); do
 420       if echo "${flag}" | grep -q '^-L'; then
 421         if [ "${LLVM_LDFLAGS}" != "" ] ; then
 422           LLVM_LDFLAGS="${LLVM_LDFLAGS} "
 423         fi
 424         LLVM_LDFLAGS="${LLVM_LDFLAGS}${flag}"
 425       fi
 426     done
 427 
 428     unset LLVM_LIBS
 429     for flag in $("${LLVM_CONFIG}" --libs $llvm_components); do
 430       if echo "${flag}" | grep -q '^-l'; then
 431         if [ "${LLVM_LIBS}" != "" ] ; then
 432           LLVM_LIBS="${LLVM_LIBS} "
 433         fi
 434         LLVM_LIBS="${LLVM_LIBS}${flag}"
 435       fi
 436     done
 437 
 438     export LLVM_CFLAGS
 439     export LLVM_LDFLAGS
 440     export LLVM_LIBS
 441   fi
 442 fi