duke@435: # trims@2384: # Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved. duke@435: # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. duke@435: # duke@435: # This code is free software; you can redistribute it and/or modify it duke@435: # under the terms of the GNU General Public License version 2 only, as duke@435: # published by the Free Software Foundation. duke@435: # duke@435: # This code is distributed in the hope that it will be useful, but WITHOUT duke@435: # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or duke@435: # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License duke@435: # version 2 for more details (a copy is included in the LICENSE file that duke@435: # accompanied this code). duke@435: # duke@435: # You should have received a copy of the GNU General Public License version duke@435: # 2 along with this work; if not, write to the Free Software Foundation, duke@435: # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. duke@435: # trims@1907: # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA trims@1907: # or visit www.oracle.com if you need additional information or have any trims@1907: # questions. duke@435: # duke@435: # duke@435: dcubed@1757: set -e dcubed@1757: duke@435: # This shell script echoes "MSC_VER=" duke@435: # It ignores the micro version component. duke@435: # Examples: duke@435: # cl version 12.00.8804 returns "MSC_VER=1200" duke@435: # cl version 13.10.3077 returns "MSC_VER=1310" duke@435: # cl version 14.00.30701 returns "MSC_VER=1399" (OLD_MSSDK version) duke@435: # cl version 14.00.40310.41 returns "MSC_VER=1400" kvn@1080: # cl version 15.00.21022.8 returns "MSC_VER=1500" duke@435: duke@435: # Note that we currently do not have a way to set HotSpotMksHome in duke@435: # the batch build, but so far this has not seemed to be a problem. The duke@435: # reason this environment variable is necessary is that it seems that duke@435: # Windows truncates very long PATHs when executing shells like MKS's duke@435: # sh, and it has been found that sometimes `which sh` fails. duke@435: duke@435: if [ "x$HotSpotMksHome" != "x" ]; then dcubed@1757: TOOL_DIR="$HotSpotMksHome" duke@435: else dcubed@1757: # HotSpotMksHome is not set so use the directory that contains "sh". dcubed@1757: # This works with both MKS and Cygwin. dcubed@1757: SH=`which sh` dcubed@1757: TOOL_DIR=`dirname "$SH"` duke@435: fi duke@435: dcubed@1763: DIRNAME="$TOOL_DIR/dirname" dcubed@1757: HEAD="$TOOL_DIR/head" dcubed@1757: ECHO="$TOOL_DIR/echo" dcubed@1757: EXPR="$TOOL_DIR/expr" dcubed@1757: CUT="$TOOL_DIR/cut" dcubed@1757: SED="$TOOL_DIR/sed" duke@435: duke@435: if [ "x$FORCE_MSC_VER" != "x" ]; then duke@435: echo "MSC_VER=$FORCE_MSC_VER" duke@435: else duke@435: MSC_VER_RAW=`cl 2>&1 | "$HEAD" -n 1 | "$SED" 's/.*Version[\ ]*\([0-9][0-9.]*\).*/\1/'` duke@435: MSC_VER_MAJOR=`"$ECHO" $MSC_VER_RAW | "$CUT" -d'.' -f1` duke@435: MSC_VER_MINOR=`"$ECHO" $MSC_VER_RAW | "$CUT" -d'.' -f2` duke@435: MSC_VER_MICRO=`"$ECHO" $MSC_VER_RAW | "$CUT" -d'.' -f3` duke@435: if [ "${MSC_VER_MAJOR}" -eq 14 -a "${MSC_VER_MINOR}" -eq 0 -a "${MSC_VER_MICRO}" -eq 30701 ] ; then duke@435: # This said 1400 but it was really more like VS2003 (VC7) in terms of options duke@435: MSC_VER=1399 duke@435: else duke@435: MSC_VER=`"$EXPR" $MSC_VER_MAJOR \* 100 + $MSC_VER_MINOR` duke@435: fi duke@435: echo "MSC_VER=$MSC_VER" duke@435: echo "MSC_VER_RAW=$MSC_VER_RAW" duke@435: fi duke@435: erikj@3518: if [ "x$FORCE_LD_VER" != "x" ]; then erikj@3518: echo "LD_VER=$FORCE_LD_VER" duke@435: else dcubed@1757: # use the "link" command that is co-located with the "cl" command dcubed@1757: cl_cmd=`which cl` dcubed@1763: if [ "x$cl_cmd" != "x" ]; then dcubed@1763: link_cmd=`$DIRNAME "$cl_cmd"`/link dcubed@1763: else dcubed@1763: # which can't find "cl" so just use which ever "link" we find dcubed@1763: link_cmd="link" dcubed@1763: fi erikj@3518: LD_VER_RAW=`"$link_cmd" 2>&1 | "$HEAD" -n 1 | "$SED" 's/.*Version[\ ]*\([0-9][0-9.]*\).*/\1/'` erikj@3518: LD_VER_MAJOR=`"$ECHO" $LD_VER_RAW | "$CUT" -d'.' -f1` erikj@3518: LD_VER_MINOR=`"$ECHO" $LD_VER_RAW | "$CUT" -d'.' -f2` erikj@3518: LD_VER_MICRO=`"$ECHO" $LD_VER_RAW | "$CUT" -d'.' -f3` erikj@3518: LD_VER=`"$EXPR" $LD_VER_MAJOR \* 100 + $LD_VER_MINOR` erikj@3518: echo "LD_VER=$LD_VER" erikj@3518: echo "LD_VER_RAW=$LD_VER_RAW" duke@435: fi