make/windows/get_msc_ver.sh

Tue, 26 Jul 2016 11:15:09 +0800

author
fujie
date
Tue, 26 Jul 2016 11:15:09 +0800
changeset 38
f0e26f502a50
parent 0
f90c822e73f8
child 6876
710a3c8b516e
permissions
-rw-r--r--

Instruction decoding support: add movn and movz in MIPS disassembler.

aoqi@0 1 #
aoqi@0 2 # Copyright (c) 2005, 2012, Oracle and/or its affiliates. All rights reserved.
aoqi@0 3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
aoqi@0 4 #
aoqi@0 5 # This code is free software; you can redistribute it and/or modify it
aoqi@0 6 # under the terms of the GNU General Public License version 2 only, as
aoqi@0 7 # published by the Free Software Foundation.
aoqi@0 8 #
aoqi@0 9 # This code is distributed in the hope that it will be useful, but WITHOUT
aoqi@0 10 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
aoqi@0 11 # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
aoqi@0 12 # version 2 for more details (a copy is included in the LICENSE file that
aoqi@0 13 # accompanied this code).
aoqi@0 14 #
aoqi@0 15 # You should have received a copy of the GNU General Public License version
aoqi@0 16 # 2 along with this work; if not, write to the Free Software Foundation,
aoqi@0 17 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
aoqi@0 18 #
aoqi@0 19 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
aoqi@0 20 # or visit www.oracle.com if you need additional information or have any
aoqi@0 21 # questions.
aoqi@0 22 #
aoqi@0 23 #
aoqi@0 24
aoqi@0 25 set -e
aoqi@0 26
aoqi@0 27 # This shell script echoes "MSC_VER=<munged version of cl>"
aoqi@0 28 # It ignores the micro version component.
aoqi@0 29 # Examples:
aoqi@0 30 # cl version 12.00.8804 returns "MSC_VER=1200"
aoqi@0 31 # cl version 13.10.3077 returns "MSC_VER=1310"
aoqi@0 32 # cl version 14.00.30701 returns "MSC_VER=1399" (OLD_MSSDK version)
aoqi@0 33 # cl version 14.00.40310.41 returns "MSC_VER=1400"
aoqi@0 34 # cl version 15.00.21022.8 returns "MSC_VER=1500"
aoqi@0 35
aoqi@0 36 # Note that we currently do not have a way to set HotSpotMksHome in
aoqi@0 37 # the batch build, but so far this has not seemed to be a problem. The
aoqi@0 38 # reason this environment variable is necessary is that it seems that
aoqi@0 39 # Windows truncates very long PATHs when executing shells like MKS's
aoqi@0 40 # sh, and it has been found that sometimes `which sh` fails.
aoqi@0 41
aoqi@0 42 if [ "x$HotSpotMksHome" != "x" ]; then
aoqi@0 43 TOOL_DIR="$HotSpotMksHome"
aoqi@0 44 else
aoqi@0 45 # HotSpotMksHome is not set so use the directory that contains "sh".
aoqi@0 46 # This works with both MKS and Cygwin.
aoqi@0 47 SH=`which sh`
aoqi@0 48 TOOL_DIR=`dirname "$SH"`
aoqi@0 49 fi
aoqi@0 50
aoqi@0 51 DIRNAME="$TOOL_DIR/dirname"
aoqi@0 52 HEAD="$TOOL_DIR/head"
aoqi@0 53 ECHO="$TOOL_DIR/echo"
aoqi@0 54 EXPR="$TOOL_DIR/expr"
aoqi@0 55 CUT="$TOOL_DIR/cut"
aoqi@0 56 SED="$TOOL_DIR/sed"
aoqi@0 57
aoqi@0 58 if [ "x$FORCE_MSC_VER" != "x" ]; then
aoqi@0 59 echo "MSC_VER=$FORCE_MSC_VER"
aoqi@0 60 else
aoqi@0 61 MSC_VER_RAW=`cl 2>&1 | "$HEAD" -n 1 | "$SED" 's/.*Version[\ ]*\([0-9][0-9.]*\).*/\1/'`
aoqi@0 62 MSC_VER_MAJOR=`"$ECHO" $MSC_VER_RAW | "$CUT" -d'.' -f1`
aoqi@0 63 MSC_VER_MINOR=`"$ECHO" $MSC_VER_RAW | "$CUT" -d'.' -f2`
aoqi@0 64 MSC_VER_MICRO=`"$ECHO" $MSC_VER_RAW | "$CUT" -d'.' -f3`
aoqi@0 65 if [ "${MSC_VER_MAJOR}" -eq 14 -a "${MSC_VER_MINOR}" -eq 0 -a "${MSC_VER_MICRO}" -eq 30701 ] ; then
aoqi@0 66 # This said 1400 but it was really more like VS2003 (VC7) in terms of options
aoqi@0 67 MSC_VER=1399
aoqi@0 68 else
aoqi@0 69 MSC_VER=`"$EXPR" $MSC_VER_MAJOR \* 100 + $MSC_VER_MINOR`
aoqi@0 70 fi
aoqi@0 71 echo "MSC_VER=$MSC_VER"
aoqi@0 72 echo "MSC_VER_RAW=$MSC_VER_RAW"
aoqi@0 73 fi
aoqi@0 74
aoqi@0 75 if [ "x$FORCE_LD_VER" != "x" ]; then
aoqi@0 76 echo "LD_VER=$FORCE_LD_VER"
aoqi@0 77 else
aoqi@0 78 # use the "link" command that is co-located with the "cl" command
aoqi@0 79 cl_cmd=`which cl`
aoqi@0 80 if [ "x$cl_cmd" != "x" ]; then
aoqi@0 81 link_cmd=`$DIRNAME "$cl_cmd"`/link
aoqi@0 82 else
aoqi@0 83 # which can't find "cl" so just use which ever "link" we find
aoqi@0 84 link_cmd="link"
aoqi@0 85 fi
aoqi@0 86 LD_VER_RAW=`"$link_cmd" 2>&1 | "$HEAD" -n 1 | "$SED" 's/.*Version[\ ]*\([0-9][0-9.]*\).*/\1/'`
aoqi@0 87 LD_VER_MAJOR=`"$ECHO" $LD_VER_RAW | "$CUT" -d'.' -f1`
aoqi@0 88 LD_VER_MINOR=`"$ECHO" $LD_VER_RAW | "$CUT" -d'.' -f2`
aoqi@0 89 LD_VER_MICRO=`"$ECHO" $LD_VER_RAW | "$CUT" -d'.' -f3`
aoqi@0 90 LD_VER=`"$EXPR" $LD_VER_MAJOR \* 100 + $LD_VER_MINOR`
aoqi@0 91 echo "LD_VER=$LD_VER"
aoqi@0 92 echo "LD_VER_RAW=$LD_VER_RAW"
aoqi@0 93 fi

mercurial