corba/make/jprt.config
author mcimadamore
Wed, 09 Apr 2008 14:05:24 +0100
changeset 510 8d0b2c7d60a1
parent 4 02bb8761fcce
child 648 7b3eaf04308f
permissions -rw-r--r--
6481655: Parser confused by combination of parens and explicit type args Summary: Bug in the parser caused by the fact that explicit type arguments are disabled when parsing parenthesized expressions Reviewed-by: jjg
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
4
02bb8761fcce Initial load
duke
parents:
diff changeset
     1
#!echo "This is not a shell script"
02bb8761fcce Initial load
duke
parents:
diff changeset
     2
#############################################################################
02bb8761fcce Initial load
duke
parents:
diff changeset
     3
#
02bb8761fcce Initial load
duke
parents:
diff changeset
     4
# Copyright 2006-2007 Sun Microsystems, Inc.  All Rights Reserved.
02bb8761fcce Initial load
duke
parents:
diff changeset
     5
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
02bb8761fcce Initial load
duke
parents:
diff changeset
     6
#
02bb8761fcce Initial load
duke
parents:
diff changeset
     7
# This code is free software; you can redistribute it and/or modify it
02bb8761fcce Initial load
duke
parents:
diff changeset
     8
# under the terms of the GNU General Public License version 2 only, as
02bb8761fcce Initial load
duke
parents:
diff changeset
     9
# published by the Free Software Foundation.  Sun designates this
02bb8761fcce Initial load
duke
parents:
diff changeset
    10
# particular file as subject to the "Classpath" exception as provided
02bb8761fcce Initial load
duke
parents:
diff changeset
    11
# by Sun in the LICENSE file that accompanied this code.
02bb8761fcce Initial load
duke
parents:
diff changeset
    12
#
02bb8761fcce Initial load
duke
parents:
diff changeset
    13
# This code is distributed in the hope that it will be useful, but WITHOUT
02bb8761fcce Initial load
duke
parents:
diff changeset
    14
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
02bb8761fcce Initial load
duke
parents:
diff changeset
    15
# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
02bb8761fcce Initial load
duke
parents:
diff changeset
    16
# version 2 for more details (a copy is included in the LICENSE file that
02bb8761fcce Initial load
duke
parents:
diff changeset
    17
# accompanied this code).
02bb8761fcce Initial load
duke
parents:
diff changeset
    18
#
02bb8761fcce Initial load
duke
parents:
diff changeset
    19
# You should have received a copy of the GNU General Public License version
02bb8761fcce Initial load
duke
parents:
diff changeset
    20
# 2 along with this work; if not, write to the Free Software Foundation,
02bb8761fcce Initial load
duke
parents:
diff changeset
    21
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
02bb8761fcce Initial load
duke
parents:
diff changeset
    22
#
02bb8761fcce Initial load
duke
parents:
diff changeset
    23
# Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
02bb8761fcce Initial load
duke
parents:
diff changeset
    24
# CA 95054 USA or visit www.sun.com if you need additional information or
02bb8761fcce Initial load
duke
parents:
diff changeset
    25
# have any questions.
02bb8761fcce Initial load
duke
parents:
diff changeset
    26
#
02bb8761fcce Initial load
duke
parents:
diff changeset
    27
#############################################################################
02bb8761fcce Initial load
duke
parents:
diff changeset
    28
#
02bb8761fcce Initial load
duke
parents:
diff changeset
    29
# JPRT shell configuration for building.
02bb8761fcce Initial load
duke
parents:
diff changeset
    30
#
02bb8761fcce Initial load
duke
parents:
diff changeset
    31
# Input environment variables:
02bb8761fcce Initial load
duke
parents:
diff changeset
    32
#    ALT_BOOTDIR
02bb8761fcce Initial load
duke
parents:
diff changeset
    33
#    ALT_SLASH_JAVA
02bb8761fcce Initial load
duke
parents:
diff changeset
    34
#    ALT_JDK_IMPORT_PATH
02bb8761fcce Initial load
duke
parents:
diff changeset
    35
#    Windows Only:
02bb8761fcce Initial load
duke
parents:
diff changeset
    36
#      PATH
02bb8761fcce Initial load
duke
parents:
diff changeset
    37
#      VS71COMNTOOLS
02bb8761fcce Initial load
duke
parents:
diff changeset
    38
#      PROCESSOR_IDENTIFIER
02bb8761fcce Initial load
duke
parents:
diff changeset
    39
#      ROOTDIR
02bb8761fcce Initial load
duke
parents:
diff changeset
    40
#
02bb8761fcce Initial load
duke
parents:
diff changeset
    41
# Output variable settings:
02bb8761fcce Initial load
duke
parents:
diff changeset
    42
#    make            Full path to GNU make
02bb8761fcce Initial load
duke
parents:
diff changeset
    43
#    compiler_path   Path to compiler bin directory
02bb8761fcce Initial load
duke
parents:
diff changeset
    44
#    compiler_name   Unique name of this compiler
02bb8761fcce Initial load
duke
parents:
diff changeset
    45
#
02bb8761fcce Initial load
duke
parents:
diff changeset
    46
# Output environment variables:
02bb8761fcce Initial load
duke
parents:
diff changeset
    47
#    PATH
02bb8761fcce Initial load
duke
parents:
diff changeset
    48
#    ALT_COMPILER_PATH
02bb8761fcce Initial load
duke
parents:
diff changeset
    49
#    Windows Only:
02bb8761fcce Initial load
duke
parents:
diff changeset
    50
#      ALT_MSDEVTOOLS_PATH
02bb8761fcce Initial load
duke
parents:
diff changeset
    51
#      ALT_DEVTOOLS_PATH (To avoid the C:/UTILS default)
02bb8761fcce Initial load
duke
parents:
diff changeset
    52
#      LIB
02bb8761fcce Initial load
duke
parents:
diff changeset
    53
#      INCLUDE
02bb8761fcce Initial load
duke
parents:
diff changeset
    54
#
02bb8761fcce Initial load
duke
parents:
diff changeset
    55
# After JDK6, most settings will be found via ALT_SLASH_JAVA or
02bb8761fcce Initial load
duke
parents:
diff changeset
    56
#   by way of other system environment variables. If this was JDK5
02bb8761fcce Initial load
duke
parents:
diff changeset
    57
#   or an older JDK, you might need to export more ALT_* variables.
02bb8761fcce Initial load
duke
parents:
diff changeset
    58
#
02bb8761fcce Initial load
duke
parents:
diff changeset
    59
# On Windows AMD64, if MSSDK is not set, assumes Platform SDK is installed at:
02bb8761fcce Initial load
duke
parents:
diff changeset
    60
#          C:/Program Files/Microsoft Platform SDK
02bb8761fcce Initial load
duke
parents:
diff changeset
    61
#
02bb8761fcce Initial load
duke
parents:
diff changeset
    62
#############################################################################
02bb8761fcce Initial load
duke
parents:
diff changeset
    63
02bb8761fcce Initial load
duke
parents:
diff changeset
    64
#############################################################################
02bb8761fcce Initial load
duke
parents:
diff changeset
    65
# Error
02bb8761fcce Initial load
duke
parents:
diff changeset
    66
error() # message
02bb8761fcce Initial load
duke
parents:
diff changeset
    67
{
02bb8761fcce Initial load
duke
parents:
diff changeset
    68
  echo "ERROR: $1"
02bb8761fcce Initial load
duke
parents:
diff changeset
    69
  exit 6
02bb8761fcce Initial load
duke
parents:
diff changeset
    70
}
02bb8761fcce Initial load
duke
parents:
diff changeset
    71
# Directory must exist
02bb8761fcce Initial load
duke
parents:
diff changeset
    72
dirMustExist() # dir name
02bb8761fcce Initial load
duke
parents:
diff changeset
    73
{
02bb8761fcce Initial load
duke
parents:
diff changeset
    74
  if [ ! -d "$1" ] ; then
02bb8761fcce Initial load
duke
parents:
diff changeset
    75
    error "Directory for $2 does not exist: $1"
02bb8761fcce Initial load
duke
parents:
diff changeset
    76
  fi
02bb8761fcce Initial load
duke
parents:
diff changeset
    77
}
02bb8761fcce Initial load
duke
parents:
diff changeset
    78
# File must exist
02bb8761fcce Initial load
duke
parents:
diff changeset
    79
fileMustExist() # dir name
02bb8761fcce Initial load
duke
parents:
diff changeset
    80
{
02bb8761fcce Initial load
duke
parents:
diff changeset
    81
  if [ ! -f "$1" ] ; then
02bb8761fcce Initial load
duke
parents:
diff changeset
    82
    error "File for $2 does not exist: $1"
02bb8761fcce Initial load
duke
parents:
diff changeset
    83
  fi
02bb8761fcce Initial load
duke
parents:
diff changeset
    84
}
02bb8761fcce Initial load
duke
parents:
diff changeset
    85
#############################################################################
02bb8761fcce Initial load
duke
parents:
diff changeset
    86
02bb8761fcce Initial load
duke
parents:
diff changeset
    87
# Should be set by JPRT as the 3 basic inputs
02bb8761fcce Initial load
duke
parents:
diff changeset
    88
bootdir="${ALT_BOOTDIR}"
02bb8761fcce Initial load
duke
parents:
diff changeset
    89
slashjava="${ALT_SLASH_JAVA}"
02bb8761fcce Initial load
duke
parents:
diff changeset
    90
jdk_import="${ALT_JDK_IMPORT_PATH}"
02bb8761fcce Initial load
duke
parents:
diff changeset
    91
02bb8761fcce Initial load
duke
parents:
diff changeset
    92
# The /java/devtools items
02bb8761fcce Initial load
duke
parents:
diff changeset
    93
jdk_devtools="${slashjava}/devtools"
02bb8761fcce Initial load
duke
parents:
diff changeset
    94
share="${jdk_devtools}/share"
02bb8761fcce Initial load
duke
parents:
diff changeset
    95
02bb8761fcce Initial load
duke
parents:
diff changeset
    96
# Needed for langtools, maybe other parts of the build
02bb8761fcce Initial load
duke
parents:
diff changeset
    97
ANT_HOME="${share}/ant/latest"
02bb8761fcce Initial load
duke
parents:
diff changeset
    98
export ANT_HOME
02bb8761fcce Initial load
duke
parents:
diff changeset
    99
FINDBUGS_HOME="${share}/findbugs/latest"
02bb8761fcce Initial load
duke
parents:
diff changeset
   100
export FINDBUGS_HOME
02bb8761fcce Initial load
duke
parents:
diff changeset
   101
02bb8761fcce Initial load
duke
parents:
diff changeset
   102
# The 3 bin directories in common to all platforms
02bb8761fcce Initial load
duke
parents:
diff changeset
   103
sharebin="${share}/bin"
02bb8761fcce Initial load
duke
parents:
diff changeset
   104
antbin="${ANT_HOME}/bin"
02bb8761fcce Initial load
duke
parents:
diff changeset
   105
findbugsbin="${FINDBUGS_HOME}/bin"
02bb8761fcce Initial load
duke
parents:
diff changeset
   106
02bb8761fcce Initial load
duke
parents:
diff changeset
   107
# Check input
02bb8761fcce Initial load
duke
parents:
diff changeset
   108
dirMustExist "${bootdir}"         ALT_BOOTDIR
02bb8761fcce Initial load
duke
parents:
diff changeset
   109
dirMustExist "${slashjava}"       ALT_SLASH_JAVA
02bb8761fcce Initial load
duke
parents:
diff changeset
   110
dirMustExist "${jdk_import}"      ALT_JDK_IMPORT_PATH
02bb8761fcce Initial load
duke
parents:
diff changeset
   111
dirMustExist "${ANT_HOME}"        ANT_HOME
02bb8761fcce Initial load
duke
parents:
diff changeset
   112
dirMustExist "${FINDBUGS_HOME}"   FINDBUGS_HOME
02bb8761fcce Initial load
duke
parents:
diff changeset
   113
02bb8761fcce Initial load
duke
parents:
diff changeset
   114
# Uses 'uname -s', but only expect SunOS or Linux, assume Windows otherwise.
02bb8761fcce Initial load
duke
parents:
diff changeset
   115
osname=`uname -s`
02bb8761fcce Initial load
duke
parents:
diff changeset
   116
if [ "${osname}" = SunOS ] ; then
02bb8761fcce Initial load
duke
parents:
diff changeset
   117
   
02bb8761fcce Initial load
duke
parents:
diff changeset
   118
    # SOLARIS: Sparc or X86
02bb8761fcce Initial load
duke
parents:
diff changeset
   119
    osarch=`uname -p`
02bb8761fcce Initial load
duke
parents:
diff changeset
   120
    if [ "${osarch}" = sparc ] ; then
02bb8761fcce Initial load
duke
parents:
diff changeset
   121
	solaris_arch=sparc
02bb8761fcce Initial load
duke
parents:
diff changeset
   122
    else
02bb8761fcce Initial load
duke
parents:
diff changeset
   123
	solaris_arch=i386
02bb8761fcce Initial load
duke
parents:
diff changeset
   124
    fi
02bb8761fcce Initial load
duke
parents:
diff changeset
   125
02bb8761fcce Initial load
duke
parents:
diff changeset
   126
    # Get the SS11 compilers into path (make sure it matches ALT setting)
02bb8761fcce Initial load
duke
parents:
diff changeset
   127
    compiler_path=${jdk_devtools}/${solaris_arch}/SUNWspro/SS11/bin
02bb8761fcce Initial load
duke
parents:
diff changeset
   128
    compiler_name=SS11
02bb8761fcce Initial load
duke
parents:
diff changeset
   129
    ALT_COMPILER_PATH="${compiler_path}"
02bb8761fcce Initial load
duke
parents:
diff changeset
   130
    export ALT_COMPILER_PATH
02bb8761fcce Initial load
duke
parents:
diff changeset
   131
    dirMustExist "${compiler_path}" ALT_COMPILER_PATH
02bb8761fcce Initial load
duke
parents:
diff changeset
   132
    path4sdk=${compiler_path}:${sharebin}:${antbin}:${findbugsbin}
02bb8761fcce Initial load
duke
parents:
diff changeset
   133
02bb8761fcce Initial load
duke
parents:
diff changeset
   134
    # Add basic solaris system paths
02bb8761fcce Initial load
duke
parents:
diff changeset
   135
    path4sdk=${path4sdk}:/usr/ccs/bin:/usr/ccs/lib:/usr/bin:/bin:/usr/sfw/bin
02bb8761fcce Initial load
duke
parents:
diff changeset
   136
02bb8761fcce Initial load
duke
parents:
diff changeset
   137
    # Get the previous JDK to be used to bootstrap the build
02bb8761fcce Initial load
duke
parents:
diff changeset
   138
    path4sdk=${bootdir}/bin:${path4sdk}
02bb8761fcce Initial load
duke
parents:
diff changeset
   139
02bb8761fcce Initial load
duke
parents:
diff changeset
   140
    # Find GNU make
02bb8761fcce Initial load
duke
parents:
diff changeset
   141
    make=/usr/sfw/bin/gmake
02bb8761fcce Initial load
duke
parents:
diff changeset
   142
    if [ ! -f ${make} ] ; then
02bb8761fcce Initial load
duke
parents:
diff changeset
   143
	make=/opt/sfw/bin/gmake
02bb8761fcce Initial load
duke
parents:
diff changeset
   144
	if [ ! -f ${make} ] ; then
02bb8761fcce Initial load
duke
parents:
diff changeset
   145
	    make=${jdk_devtools}/${solaris_arch}/bin/gnumake
02bb8761fcce Initial load
duke
parents:
diff changeset
   146
        fi 
02bb8761fcce Initial load
duke
parents:
diff changeset
   147
    fi
02bb8761fcce Initial load
duke
parents:
diff changeset
   148
    fileMustExist "${make}" make
02bb8761fcce Initial load
duke
parents:
diff changeset
   149
02bb8761fcce Initial load
duke
parents:
diff changeset
   150
    # File creation mask
02bb8761fcce Initial load
duke
parents:
diff changeset
   151
    umask 002
02bb8761fcce Initial load
duke
parents:
diff changeset
   152
02bb8761fcce Initial load
duke
parents:
diff changeset
   153
elif [ "${osname}" = Linux ] ; then
02bb8761fcce Initial load
duke
parents:
diff changeset
   154
   
02bb8761fcce Initial load
duke
parents:
diff changeset
   155
    # LINUX: X86, AMD64
02bb8761fcce Initial load
duke
parents:
diff changeset
   156
    osarch=`uname -m`
02bb8761fcce Initial load
duke
parents:
diff changeset
   157
    if [ "${osarch}" = i686 ] ; then
02bb8761fcce Initial load
duke
parents:
diff changeset
   158
	linux_arch=i586
02bb8761fcce Initial load
duke
parents:
diff changeset
   159
    elif [ "${osarch}" = x86_64 ] ; then
02bb8761fcce Initial load
duke
parents:
diff changeset
   160
	linux_arch=amd64
02bb8761fcce Initial load
duke
parents:
diff changeset
   161
    fi
02bb8761fcce Initial load
duke
parents:
diff changeset
   162
02bb8761fcce Initial load
duke
parents:
diff changeset
   163
    # Get the compilers into path (make sure it matches ALT setting)
02bb8761fcce Initial load
duke
parents:
diff changeset
   164
    compiler_path=/usr/bin
02bb8761fcce Initial load
duke
parents:
diff changeset
   165
    compiler_name=usr_bin
02bb8761fcce Initial load
duke
parents:
diff changeset
   166
    ALT_COMPILER_PATH="${compiler_path}"
02bb8761fcce Initial load
duke
parents:
diff changeset
   167
    export ALT_COMPILER_PATH
02bb8761fcce Initial load
duke
parents:
diff changeset
   168
    dirMustExist "${compiler_path}" ALT_COMPILER_PATH
02bb8761fcce Initial load
duke
parents:
diff changeset
   169
    path4sdk=${compiler_path}:${sharebin}:${antbin}:${findbugsbin}
02bb8761fcce Initial load
duke
parents:
diff changeset
   170
    
02bb8761fcce Initial load
duke
parents:
diff changeset
   171
    # Add basic paths
02bb8761fcce Initial load
duke
parents:
diff changeset
   172
    path4sdk=${path4sdk}:/usr/bin:/bin:/usr/sbin:/sbin
02bb8761fcce Initial load
duke
parents:
diff changeset
   173
02bb8761fcce Initial load
duke
parents:
diff changeset
   174
    # Get the previous JDK to be used to bootstrap the build
02bb8761fcce Initial load
duke
parents:
diff changeset
   175
    path4sdk=${bootdir}/bin:${path4sdk}
02bb8761fcce Initial load
duke
parents:
diff changeset
   176
    
02bb8761fcce Initial load
duke
parents:
diff changeset
   177
    # Find GNU make
02bb8761fcce Initial load
duke
parents:
diff changeset
   178
    make=/usr/bin/make
02bb8761fcce Initial load
duke
parents:
diff changeset
   179
    fileMustExist "${make}" make
02bb8761fcce Initial load
duke
parents:
diff changeset
   180
02bb8761fcce Initial load
duke
parents:
diff changeset
   181
    umask 002
02bb8761fcce Initial load
duke
parents:
diff changeset
   182
   
02bb8761fcce Initial load
duke
parents:
diff changeset
   183
else
02bb8761fcce Initial load
duke
parents:
diff changeset
   184
02bb8761fcce Initial load
duke
parents:
diff changeset
   185
    # Windows: Differs on CYGWIN vs. MKS, and the compiler available.
02bb8761fcce Initial load
duke
parents:
diff changeset
   186
    #   Also, blanks in pathnames gives GNU make headaches, so anything placed
02bb8761fcce Initial load
duke
parents:
diff changeset
   187
    #   in any ALT_* variable should be the short windows dosname.
02bb8761fcce Initial load
duke
parents:
diff changeset
   188
   
02bb8761fcce Initial load
duke
parents:
diff changeset
   189
    # WINDOWS: Install and use MKS or CYGWIN (should have already been done)
02bb8761fcce Initial load
duke
parents:
diff changeset
   190
    #   Assumption here is that you are in a shell window via MKS or cygwin.
02bb8761fcce Initial load
duke
parents:
diff changeset
   191
    #   MKS install should have defined the environment variable ROOTDIR.
02bb8761fcce Initial load
duke
parents:
diff changeset
   192
    #   We also need to figure out which one we have: X86, AMD64
02bb8761fcce Initial load
duke
parents:
diff changeset
   193
    if [ "`echo ${PROCESSOR_IDENTIFIER} | fgrep AMD64`" != "" ] ; then
02bb8761fcce Initial load
duke
parents:
diff changeset
   194
	windows_arch=amd64
02bb8761fcce Initial load
duke
parents:
diff changeset
   195
    else
02bb8761fcce Initial load
duke
parents:
diff changeset
   196
	windows_arch=i586
02bb8761fcce Initial load
duke
parents:
diff changeset
   197
    fi
02bb8761fcce Initial load
duke
parents:
diff changeset
   198
    
02bb8761fcce Initial load
duke
parents:
diff changeset
   199
    # We need to determine if we are running a CYGWIN shell or an MKS shell
02bb8761fcce Initial load
duke
parents:
diff changeset
   200
    #    (if uname isn't available, then it will be unix_toolset=unknown)
02bb8761fcce Initial load
duke
parents:
diff changeset
   201
    unix_toolset=unknown
02bb8761fcce Initial load
duke
parents:
diff changeset
   202
    if [ "`uname -a | fgrep Cygwin`" = "" -a -d "${ROOTDIR}" ] ; then
02bb8761fcce Initial load
duke
parents:
diff changeset
   203
        # We kind of assume ROOTDIR is where MKS is and it's ok
02bb8761fcce Initial load
duke
parents:
diff changeset
   204
        unix_toolset=MKS
02bb8761fcce Initial load
duke
parents:
diff changeset
   205
        mkshome=`dosname -s "${ROOTDIR}"`
02bb8761fcce Initial load
duke
parents:
diff changeset
   206
	# Utility to convert to short pathnames without spaces
02bb8761fcce Initial load
duke
parents:
diff changeset
   207
	dosname="${mkshome}/mksnt/dosname -s"
02bb8761fcce Initial load
duke
parents:
diff changeset
   208
        # Most unix utilities are in the mksnt directory of ROOTDIR
02bb8761fcce Initial load
duke
parents:
diff changeset
   209
        unixcommand_path="${mkshome}/mksnt"
02bb8761fcce Initial load
duke
parents:
diff changeset
   210
        path4sdk="${sharebin};${antbin};${findbugsbin};${unixcommand_path}"
02bb8761fcce Initial load
duke
parents:
diff changeset
   211
        dirMustExist "${unixcommand_path}" ALT_UNIXCOMMAND_PATH
02bb8761fcce Initial load
duke
parents:
diff changeset
   212
	devtools_path="${jdk_devtools}/win32/bin"
02bb8761fcce Initial load
duke
parents:
diff changeset
   213
	path4sdk="${devtools_path};${path4sdk}"
02bb8761fcce Initial load
duke
parents:
diff changeset
   214
	# Normally this need not be set, but on Windows it's default is C:/UTILS
02bb8761fcce Initial load
duke
parents:
diff changeset
   215
        ALT_DEVTOOLS_PATH="${devtools_path}"
02bb8761fcce Initial load
duke
parents:
diff changeset
   216
	export ALT_DEVTOOLS_PATH
02bb8761fcce Initial load
duke
parents:
diff changeset
   217
        dirMustExist "${devtools_path}" ALT_DEVTOOLS_PATH
02bb8761fcce Initial load
duke
parents:
diff changeset
   218
        # Find GNU make
02bb8761fcce Initial load
duke
parents:
diff changeset
   219
        make="${devtools_path}/gnumake.exe"
02bb8761fcce Initial load
duke
parents:
diff changeset
   220
        fileMustExist "${make}" make
02bb8761fcce Initial load
duke
parents:
diff changeset
   221
    elif [ "`uname -a | fgrep Cygwin`" != "" -a -f /bin/cygpath ] ; then
02bb8761fcce Initial load
duke
parents:
diff changeset
   222
        # For CYGWIN, uname will have "Cygwin" in it, and /bin/cygpath should exist
02bb8761fcce Initial load
duke
parents:
diff changeset
   223
        unix_toolset=CYGWIN
02bb8761fcce Initial load
duke
parents:
diff changeset
   224
	# Utility to convert to short pathnames without spaces
02bb8761fcce Initial load
duke
parents:
diff changeset
   225
	dosname="/usr/bin/cygpath -a -m -s"
02bb8761fcce Initial load
duke
parents:
diff changeset
   226
        # Most unix utilities are in the /usr/bin
02bb8761fcce Initial load
duke
parents:
diff changeset
   227
        unixcommand_path="/usr/bin"
02bb8761fcce Initial load
duke
parents:
diff changeset
   228
        path4sdk="${sharebin};${antbin};${findbugsbin};${unixcommand_path}"
02bb8761fcce Initial load
duke
parents:
diff changeset
   229
        dirMustExist "${unixcommand_path}" ALT_UNIXCOMMAND_PATH
02bb8761fcce Initial load
duke
parents:
diff changeset
   230
        # Find GNU make
02bb8761fcce Initial load
duke
parents:
diff changeset
   231
        make="${unixcommand_path}/make.exe"
02bb8761fcce Initial load
duke
parents:
diff changeset
   232
        fileMustExist "${make}" make
02bb8761fcce Initial load
duke
parents:
diff changeset
   233
    else
02bb8761fcce Initial load
duke
parents:
diff changeset
   234
      echo "WARNING: Cannot figure out if this is MKS or CYGWIN"
02bb8761fcce Initial load
duke
parents:
diff changeset
   235
    fi
02bb8761fcce Initial load
duke
parents:
diff changeset
   236
02bb8761fcce Initial load
duke
parents:
diff changeset
   237
    # WINDOWS: Compiler setup (nasty part)
02bb8761fcce Initial load
duke
parents:
diff changeset
   238
    #   NOTE: You can use vcvars32.bat to set PATH, LIB, and INCLUDE.
02bb8761fcce Initial load
duke
parents:
diff changeset
   239
    #   NOTE: CYGWIN has a link.exe too, make sure the compilers are first
02bb8761fcce Initial load
duke
parents:
diff changeset
   240
    if [ "${windows_arch}" = i586 ] ; then
02bb8761fcce Initial load
duke
parents:
diff changeset
   241
        # 32bit Windows compiler settings
02bb8761fcce Initial load
duke
parents:
diff changeset
   242
        # VisualStudio .NET 2003 VC++ 7.1 (VS71COMNTOOLS should be defined)
02bb8761fcce Initial load
duke
parents:
diff changeset
   243
        vs_root=`${dosname} "${VS71COMNTOOLS}/../.."`
02bb8761fcce Initial load
duke
parents:
diff changeset
   244
        # Fill in PATH, LIB, and INCLUDE (unset all others to make sure)
02bb8761fcce Initial load
duke
parents:
diff changeset
   245
        msdev_root="${vs_root}/Common7/Tools"
02bb8761fcce Initial load
duke
parents:
diff changeset
   246
        msdevtools_path="${msdev_root}/bin"
02bb8761fcce Initial load
duke
parents:
diff changeset
   247
        vc7_root="${vs_root}/Vc7"
02bb8761fcce Initial load
duke
parents:
diff changeset
   248
        compiler_path="${vc7_root}/bin"
02bb8761fcce Initial load
duke
parents:
diff changeset
   249
        compiler_name=VS2003
02bb8761fcce Initial load
duke
parents:
diff changeset
   250
        platform_sdk="${vc7_root}/PlatformSDK"
02bb8761fcce Initial load
duke
parents:
diff changeset
   251
        # LIB and INCLUDE must use ; as a separator
02bb8761fcce Initial load
duke
parents:
diff changeset
   252
        include4sdk="${vc7_root}/atlmfc/include"
02bb8761fcce Initial load
duke
parents:
diff changeset
   253
        include4sdk="${include4sdk};${vc7_root}/include"
02bb8761fcce Initial load
duke
parents:
diff changeset
   254
        include4sdk="${include4sdk};${platform_sdk}/include/prerelease"
02bb8761fcce Initial load
duke
parents:
diff changeset
   255
        include4sdk="${include4sdk};${platform_sdk}/include"
02bb8761fcce Initial load
duke
parents:
diff changeset
   256
        include4sdk="${include4sdk};${vs_root}/SDK/v1.1/include"
02bb8761fcce Initial load
duke
parents:
diff changeset
   257
        lib4sdk="${vc7_root}/atlmfc/lib"
02bb8761fcce Initial load
duke
parents:
diff changeset
   258
        lib4sdk="${lib4sdk};${vc7_root}/lib"
02bb8761fcce Initial load
duke
parents:
diff changeset
   259
        lib4sdk="${lib4sdk};${platform_sdk}/lib/prerelease"
02bb8761fcce Initial load
duke
parents:
diff changeset
   260
        lib4sdk="${lib4sdk};${platform_sdk}/lib"
02bb8761fcce Initial load
duke
parents:
diff changeset
   261
        lib4sdk="${lib4sdk};${vs_root}/SDK/v1.1/lib"
02bb8761fcce Initial load
duke
parents:
diff changeset
   262
        # Search path and DLL locating path
02bb8761fcce Initial load
duke
parents:
diff changeset
   263
        #   WARNING: CYGWIN has a link.exe too, make sure compilers are first
02bb8761fcce Initial load
duke
parents:
diff changeset
   264
        path4sdk="${vs_root}/Common7/Tools/bin;${path4sdk}"
02bb8761fcce Initial load
duke
parents:
diff changeset
   265
	path4sdk="${vs_root}/SDK/v1.1/bin;${path4sdk}"
02bb8761fcce Initial load
duke
parents:
diff changeset
   266
        path4sdk="${vs_root}/Common7/Tools;${path4sdk}"
02bb8761fcce Initial load
duke
parents:
diff changeset
   267
	path4sdk="${vs_root}/Common7/Tools/bin/prerelease;${path4sdk}"
02bb8761fcce Initial load
duke
parents:
diff changeset
   268
        path4sdk="${vs_root}/Common7/IDE;${path4sdk}"
02bb8761fcce Initial load
duke
parents:
diff changeset
   269
	path4sdk="${compiler_path};${path4sdk}"
02bb8761fcce Initial load
duke
parents:
diff changeset
   270
    elif [ "${windows_arch}" = amd64 ] ; then
02bb8761fcce Initial load
duke
parents:
diff changeset
   271
        # AMD64 64bit Windows compiler settings
02bb8761fcce Initial load
duke
parents:
diff changeset
   272
	if [ "${MSSDK}" != "" ] ; then
02bb8761fcce Initial load
duke
parents:
diff changeset
   273
	    platform_sdk="${MSSDK}"
02bb8761fcce Initial load
duke
parents:
diff changeset
   274
	else
02bb8761fcce Initial load
duke
parents:
diff changeset
   275
	    platform_sdk=`${dosname} "C:/Program Files/Microsoft Platform SDK/"`
02bb8761fcce Initial load
duke
parents:
diff changeset
   276
	fi
02bb8761fcce Initial load
duke
parents:
diff changeset
   277
	compiler_path="${platform_sdk}/Bin/win64/x86/AMD64"
02bb8761fcce Initial load
duke
parents:
diff changeset
   278
        compiler_name=VS2005_PSDK
02bb8761fcce Initial load
duke
parents:
diff changeset
   279
	msdevtools_path="${platform_sdk}/Bin"
02bb8761fcce Initial load
duke
parents:
diff changeset
   280
        # LIB and INCLUDE must use ; as a separator
02bb8761fcce Initial load
duke
parents:
diff changeset
   281
        include4sdk="${platform_sdk}/Include"
02bb8761fcce Initial load
duke
parents:
diff changeset
   282
	include4sdk="${include4sdk};${platform_sdk}/Include/crt/sys"
02bb8761fcce Initial load
duke
parents:
diff changeset
   283
	include4sdk="${include4sdk};${platform_sdk}/Include/mfc"
02bb8761fcce Initial load
duke
parents:
diff changeset
   284
	include4sdk="${include4sdk};${platform_sdk}/Include/atl"
02bb8761fcce Initial load
duke
parents:
diff changeset
   285
	include4sdk="${include4sdk};${platform_sdk}/Include/crt"
02bb8761fcce Initial load
duke
parents:
diff changeset
   286
        lib4sdk="${platform_sdk}/Lib/AMD64"
02bb8761fcce Initial load
duke
parents:
diff changeset
   287
        lib4sdk="${lib4sdk};${platform_sdk}/Lib/AMD64/atlmfc"
02bb8761fcce Initial load
duke
parents:
diff changeset
   288
        # Search path and DLL locating path
02bb8761fcce Initial load
duke
parents:
diff changeset
   289
        #   WARNING: CYGWIN has a link.exe too, make sure compilers are first
02bb8761fcce Initial load
duke
parents:
diff changeset
   290
        path4sdk="${platform_sdk}/bin;${path4sdk}"
02bb8761fcce Initial load
duke
parents:
diff changeset
   291
        path4sdk="${compiler_path};${path4sdk}"
02bb8761fcce Initial load
duke
parents:
diff changeset
   292
    fi
02bb8761fcce Initial load
duke
parents:
diff changeset
   293
    # Export LIB and INCLUDE
02bb8761fcce Initial load
duke
parents:
diff changeset
   294
    unset lib
02bb8761fcce Initial load
duke
parents:
diff changeset
   295
    unset Lib
02bb8761fcce Initial load
duke
parents:
diff changeset
   296
    LIB="${lib4sdk}"
02bb8761fcce Initial load
duke
parents:
diff changeset
   297
    export LIB
02bb8761fcce Initial load
duke
parents:
diff changeset
   298
    unset include
02bb8761fcce Initial load
duke
parents:
diff changeset
   299
    unset Include
02bb8761fcce Initial load
duke
parents:
diff changeset
   300
    INCLUDE="${include4sdk}"
02bb8761fcce Initial load
duke
parents:
diff changeset
   301
    export INCLUDE
02bb8761fcce Initial load
duke
parents:
diff changeset
   302
    # Set the ALT variable
02bb8761fcce Initial load
duke
parents:
diff changeset
   303
    ALT_COMPILER_PATH=`${dosname} "${compiler_path}"`
02bb8761fcce Initial load
duke
parents:
diff changeset
   304
    export ALT_COMPILER_PATH
02bb8761fcce Initial load
duke
parents:
diff changeset
   305
    dirMustExist "${compiler_path}" ALT_COMPILER_PATH
02bb8761fcce Initial load
duke
parents:
diff changeset
   306
    ALT_MSDEVTOOLS_PATH=`${dosname} "${msdevtools_path}"`
02bb8761fcce Initial load
duke
parents:
diff changeset
   307
    export ALT_MSDEVTOOLS_PATH
02bb8761fcce Initial load
duke
parents:
diff changeset
   308
    dirMustExist "${msdevtools_path}" ALT_MSDEVTOOLS_PATH
02bb8761fcce Initial load
duke
parents:
diff changeset
   309
    
02bb8761fcce Initial load
duke
parents:
diff changeset
   310
    # WINDOWS: Get the previous JDK to be used to bootstrap the build
02bb8761fcce Initial load
duke
parents:
diff changeset
   311
    path4sdk="${bootdir}/bin;${path4sdk}"
02bb8761fcce Initial load
duke
parents:
diff changeset
   312
02bb8761fcce Initial load
duke
parents:
diff changeset
   313
    # Turn all \\ into /, remove duplicates and trailing /
02bb8761fcce Initial load
duke
parents:
diff changeset
   314
    slash_path="`echo ${path4sdk} | sed -e 's@\\\\@/@g' -e 's@//@/@g' -e 's@/$@@' -e 's@/;@;@g'`"
02bb8761fcce Initial load
duke
parents:
diff changeset
   315
    
02bb8761fcce Initial load
duke
parents:
diff changeset
   316
    # For windows, it's hard to know where the system is, so we just add this
02bb8761fcce Initial load
duke
parents:
diff changeset
   317
    #    to PATH.
02bb8761fcce Initial load
duke
parents:
diff changeset
   318
    path4sdk="${slash_path};${PATH}"
02bb8761fcce Initial load
duke
parents:
diff changeset
   319
    
02bb8761fcce Initial load
duke
parents:
diff changeset
   320
    # Convert path4sdk to cygwin style
02bb8761fcce Initial load
duke
parents:
diff changeset
   321
    if [ "${unix_toolset}" = CYGWIN ] ; then
02bb8761fcce Initial load
duke
parents:
diff changeset
   322
	path4sdk="`/usr/bin/cygpath -p ${path4sdk}`"
02bb8761fcce Initial load
duke
parents:
diff changeset
   323
    fi
02bb8761fcce Initial load
duke
parents:
diff changeset
   324
02bb8761fcce Initial load
duke
parents:
diff changeset
   325
fi
02bb8761fcce Initial load
duke
parents:
diff changeset
   326
02bb8761fcce Initial load
duke
parents:
diff changeset
   327
# Export PATH setting
02bb8761fcce Initial load
duke
parents:
diff changeset
   328
PATH="${path4sdk}"
02bb8761fcce Initial load
duke
parents:
diff changeset
   329
export PATH
02bb8761fcce Initial load
duke
parents:
diff changeset
   330
02bb8761fcce Initial load
duke
parents:
diff changeset
   331
# Things we need to unset
02bb8761fcce Initial load
duke
parents:
diff changeset
   332
unset LD_LIBRARY_PATH
02bb8761fcce Initial load
duke
parents:
diff changeset
   333
unset LD_LIBRARY_PATH_32
02bb8761fcce Initial load
duke
parents:
diff changeset
   334
unset LD_LIBRARY_PATH_64
02bb8761fcce Initial load
duke
parents:
diff changeset
   335
unset JAVA_HOME
02bb8761fcce Initial load
duke
parents:
diff changeset
   336