duke@435: # xdono@1279: # Copyright 2005-2009 Sun Microsystems, Inc. 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: # duke@435: # Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, duke@435: # CA 95054 USA or visit www.sun.com if you need additional information or duke@435: # have any questions. duke@435: # duke@435: # duke@435: 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 duke@435: MKS_HOME="$HotSpotMksHome" duke@435: else duke@435: SH=`which sh` duke@435: MKS_HOME=`dirname "$SH"` duke@435: fi duke@435: duke@435: HEAD="$MKS_HOME/head" duke@435: ECHO="$MKS_HOME/echo" duke@435: EXPR="$MKS_HOME/expr" duke@435: CUT="$MKS_HOME/cut" duke@435: SED="$MKS_HOME/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: duke@435: if [ "x$FORCE_LINK_VER" != "x" ]; then duke@435: echo "LINK_VER=$FORCE_LINK_VER" duke@435: else duke@435: LINK_VER_RAW=`link 2>&1 | "$HEAD" -n 1 | "$SED" 's/.*Version[\ ]*\([0-9][0-9.]*\).*/\1/'` duke@435: LINK_VER_MAJOR=`"$ECHO" $LINK_VER_RAW | "$CUT" -d'.' -f1` duke@435: LINK_VER_MINOR=`"$ECHO" $LINK_VER_RAW | "$CUT" -d'.' -f2` duke@435: LINK_VER_MICRO=`"$ECHO" $LINK_VER_RAW | "$CUT" -d'.' -f3` duke@435: LINK_VER=`"$EXPR" $LINK_VER_MAJOR \* 100 + $LINK_VER_MINOR` duke@435: echo "LINK_VER=$LINK_VER" duke@435: echo "LINK_VER_RAW=$LINK_VER_RAW" duke@435: fi