author | duke |
Wed, 05 Jul 2017 22:53:16 +0200 | |
changeset 43854 | 76c52ad1e6c7 |
parent 42300 | 218374d35efd |
permissions | -rw-r--r-- |
14111 | 1 |
# |
2 |
# Copyright (c) 2011, 2012, Oracle and/or its affiliates. All rights reserved. |
|
3 |
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
|
4 |
# |
|
5 |
# This code is free software; you can redistribute it and/or modify it |
|
6 |
# under the terms of the GNU General Public License version 2 only, as |
|
7 |
# published by the Free Software Foundation. Oracle designates this |
|
8 |
# particular file as subject to the "Classpath" exception as provided |
|
9 |
# by Oracle in the LICENSE file that accompanied this code. |
|
10 |
# |
|
11 |
# This code is distributed in the hope that it will be useful, but WITHOUT |
|
12 |
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
13 |
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
14 |
# version 2 for more details (a copy is included in the LICENSE file that |
|
15 |
# accompanied this code). |
|
16 |
# |
|
17 |
# You should have received a copy of the GNU General Public License version |
|
18 |
# 2 along with this work; if not, write to the Free Software Foundation, |
|
19 |
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
20 |
# |
|
21 |
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
|
22 |
# or visit www.oracle.com if you need additional information or have any |
|
23 |
# questions. |
|
24 |
# |
|
25 |
||
28901
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
26 |
################################################################################ |
29643
89e91c724316
8076531: Switch default compiler on Windows to VS2013
erikj
parents:
29065
diff
changeset
|
27 |
# The order of these defines the priority by which we try to find them. |
89e91c724316
8076531: Switch default compiler on Windows to VS2013
erikj
parents:
29065
diff
changeset
|
28 |
VALID_VS_VERSIONS="2013 2012 2010" |
28901
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
29 |
|
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
30 |
VS_DESCRIPTION_2010="Microsoft Visual Studio 2010" |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
31 |
VS_VERSION_INTERNAL_2010=100 |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
32 |
VS_MSVCR_2010=msvcr100.dll |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
33 |
# We don't use msvcp on Visual Studio 2010 |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
34 |
#VS_MSVCP_2010=msvcp100.dll |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
35 |
VS_ENVVAR_2010="VS100COMNTOOLS" |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
36 |
VS_VS_INSTALLDIR_2010="Microsoft Visual Studio 10.0" |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
37 |
VS_SDK_INSTALLDIR_2010="Microsoft SDKs/Windows/v7.1" |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
38 |
VS_VS_PLATFORM_NAME_2010="v100" |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
39 |
VS_SDK_PLATFORM_NAME_2010="Windows7.1SDK" |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
40 |
|
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
41 |
VS_DESCRIPTION_2012="Microsoft Visual Studio 2012" |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
42 |
VS_VERSION_INTERNAL_2012=110 |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
43 |
VS_MSVCR_2012=msvcr110.dll |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
44 |
VS_MSVCP_2012=msvcp110.dll |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
45 |
VS_ENVVAR_2012="VS110COMNTOOLS" |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
46 |
VS_VS_INSTALLDIR_2012="Microsoft Visual Studio 11.0" |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
47 |
VS_SDK_INSTALLDIR_2012= |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
48 |
VS_VS_PLATFORM_NAME_2012="v110" |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
49 |
VS_SDK_PLATFORM_NAME_2012= |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
50 |
|
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
51 |
VS_DESCRIPTION_2013="Microsoft Visual Studio 2013" |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
52 |
VS_VERSION_INTERNAL_2013=120 |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
53 |
VS_MSVCR_2013=msvcr120.dll |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
54 |
VS_MSVCP_2013=msvcp120.dll |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
55 |
VS_ENVVAR_2013="VS120COMNTOOLS" |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
56 |
VS_VS_INSTALLDIR_2013="Microsoft Visual Studio 12.0" |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
57 |
VS_SDK_INSTALLDIR_2013= |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
58 |
VS_VS_PLATFORM_NAME_2013="v120" |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
59 |
VS_SDK_PLATFORM_NAME_2013= |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
60 |
|
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
61 |
################################################################################ |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
62 |
|
14111 | 63 |
AC_DEFUN([TOOLCHAIN_CHECK_POSSIBLE_VISUAL_STUDIO_ROOT], |
64 |
[ |
|
65 |
if test "x$VS_ENV_CMD" = x; then |
|
28901
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
66 |
VS_VERSION="$1" |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
67 |
VS_BASE="$2" |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
68 |
METHOD="$3" |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
69 |
|
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
70 |
if test "x$OPENJDK_TARGET_CPU_BITS" = x32; then |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
71 |
VCVARSFILE="vc/bin/vcvars32.bat" |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
72 |
else |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
73 |
VCVARSFILE="vc/bin/amd64/vcvars64.bat" |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
74 |
fi |
29643
89e91c724316
8076531: Switch default compiler on Windows to VS2013
erikj
parents:
29065
diff
changeset
|
75 |
|
28901
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
76 |
BASIC_WINDOWS_REWRITE_AS_UNIX_PATH(VS_BASE) |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
77 |
if test -d "$VS_BASE"; then |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
78 |
if test -f "$VS_BASE/$VCVARSFILE"; then |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
79 |
AC_MSG_NOTICE([Found Visual Studio installation at $VS_BASE using $METHOD]) |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
80 |
VS_ENV_CMD="$VS_BASE/$VCVARSFILE" |
26400
4d6c6f2df610
8057538: Build the freetype library during configure on Windows
simonis
parents:
25882
diff
changeset
|
81 |
# PLATFORM_TOOLSET is used during the compilation of the freetype sources (see |
4d6c6f2df610
8057538: Build the freetype library during configure on Windows
simonis
parents:
25882
diff
changeset
|
82 |
# 'LIB_BUILD_FREETYPE' in libraries.m4) and must be one of 'v100', 'v110' or 'v120' for VS 2010, 2012 or VS2013 |
28901
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
83 |
eval PLATFORM_TOOLSET="\${VS_VS_PLATFORM_NAME_${VS_VERSION}}" |
14111 | 84 |
else |
28901
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
85 |
AC_MSG_NOTICE([Found Visual Studio installation at $VS_BASE using $METHOD]) |
14111 | 86 |
AC_MSG_NOTICE([Warning: $VCVARSFILE is missing, this is probably Visual Studio Express. Ignoring]) |
87 |
fi |
|
88 |
fi |
|
89 |
fi |
|
90 |
]) |
|
91 |
||
28901
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
92 |
################################################################################ |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
93 |
|
14111 | 94 |
AC_DEFUN([TOOLCHAIN_CHECK_POSSIBLE_WIN_SDK_ROOT], |
95 |
[ |
|
96 |
if test "x$VS_ENV_CMD" = x; then |
|
28901
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
97 |
VS_VERSION="$1" |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
98 |
WIN_SDK_BASE="$2" |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
99 |
METHOD="$3" |
14111 | 100 |
BASIC_WINDOWS_REWRITE_AS_UNIX_PATH(WIN_SDK_BASE) |
101 |
if test -d "$WIN_SDK_BASE"; then |
|
14565 | 102 |
# There have been cases of partial or broken SDK installations. A missing |
103 |
# lib dir is not going to work. |
|
28901
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
104 |
if test ! -d "$WIN_SDK_BASE/lib"; then |
14565 | 105 |
AC_MSG_NOTICE([Found Windows SDK installation at $WIN_SDK_BASE using $METHOD]) |
106 |
AC_MSG_NOTICE([Warning: Installation is broken, lib dir is missing. Ignoring]) |
|
28901
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
107 |
elif test -f "$WIN_SDK_BASE/Bin/SetEnv.Cmd"; then |
14111 | 108 |
AC_MSG_NOTICE([Found Windows SDK installation at $WIN_SDK_BASE using $METHOD]) |
28901
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
109 |
VS_ENV_CMD="$WIN_SDK_BASE/Bin/SetEnv.Cmd" |
14111 | 110 |
if test "x$OPENJDK_TARGET_CPU_BITS" = x32; then |
111 |
VS_ENV_ARGS="/x86" |
|
112 |
else |
|
113 |
VS_ENV_ARGS="/x64" |
|
114 |
fi |
|
26400
4d6c6f2df610
8057538: Build the freetype library during configure on Windows
simonis
parents:
25882
diff
changeset
|
115 |
# PLATFORM_TOOLSET is used during the compilation of the freetype sources (see |
4d6c6f2df610
8057538: Build the freetype library during configure on Windows
simonis
parents:
25882
diff
changeset
|
116 |
# 'LIB_BUILD_FREETYPE' in libraries.m4) and must be 'Windows7.1SDK' for Windows7.1SDK |
4d6c6f2df610
8057538: Build the freetype library during configure on Windows
simonis
parents:
25882
diff
changeset
|
117 |
# TODO: improve detection for other versions of SDK |
28901
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
118 |
eval PLATFORM_TOOLSET="\${VS_SDK_PLATFORM_NAME_${VS_VERSION}}" |
14111 | 119 |
else |
120 |
AC_MSG_NOTICE([Found Windows SDK installation at $WIN_SDK_BASE using $METHOD]) |
|
121 |
AC_MSG_NOTICE([Warning: Installation is broken, SetEnv.Cmd is missing. Ignoring]) |
|
122 |
fi |
|
123 |
fi |
|
124 |
fi |
|
125 |
]) |
|
126 |
||
28901
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
127 |
################################################################################ |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
128 |
# Finds the bat or cmd file in Visual Studio or the SDK that sets up a proper |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
129 |
# build environment and assigns it to VS_ENV_CMD |
14111 | 130 |
AC_DEFUN([TOOLCHAIN_FIND_VISUAL_STUDIO_BAT_FILE], |
131 |
[ |
|
28901
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
132 |
VS_VERSION="$1" |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
133 |
eval VS_COMNTOOLS_VAR="\${VS_ENVVAR_${VS_VERSION}}" |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
134 |
eval VS_COMNTOOLS="\$${VS_COMNTOOLS_VAR}" |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
135 |
eval VS_INSTALL_DIR="\${VS_VS_INSTALLDIR_${VS_VERSION}}" |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
136 |
eval SDK_INSTALL_DIR="\${VS_SDK_INSTALLDIR_${VS_VERSION}}" |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
137 |
|
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
138 |
# When using --with-tools-dir, assume it points to the correct and default |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
139 |
# version of Visual Studio or that --with-toolchain-version was also set. |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
140 |
if test "x$with_tools_dir" != x; then |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
141 |
TOOLCHAIN_CHECK_POSSIBLE_VISUAL_STUDIO_ROOT([${VS_VERSION}], |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
142 |
[$with_tools_dir/../..], [--with-tools-dir]) |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
143 |
TOOLCHAIN_CHECK_POSSIBLE_VISUAL_STUDIO_ROOT([${VS_VERSION}], |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
144 |
[$with_tools_dir/../../..], [--with-tools-dir]) |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
145 |
if test "x$VS_ENV_CMD" = x; then |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
146 |
# Having specified an argument which is incorrect will produce an instant failure; |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
147 |
# we should not go on looking |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
148 |
AC_MSG_NOTICE([The path given by --with-tools-dir does not contain a valid]) |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
149 |
AC_MSG_NOTICE([Visual Studio installation. Please point to the VC/bin or VC/bin/amd64]) |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
150 |
AC_MSG_NOTICE([directory within the Visual Studio installation]) |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
151 |
AC_MSG_ERROR([Cannot locate a valid Visual Studio installation]) |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
152 |
fi |
20363 | 153 |
fi |
14111 | 154 |
|
155 |
VS_ENV_CMD="" |
|
156 |
VS_ENV_ARGS="" |
|
157 |
||
28901
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
158 |
if test "x$VS_COMNTOOLS" != x; then |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
159 |
TOOLCHAIN_CHECK_POSSIBLE_VISUAL_STUDIO_ROOT([${VS_VERSION}], |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
160 |
[$VS_COMNTOOLS/../..], [$VS_COMNTOOLS_VAR variable]) |
17818
cfaa38a17d56
8008707: build-infra: Closed (deploy) can't be built using environment from SDK SetEnv.cmd
erikj
parents:
15844
diff
changeset
|
161 |
fi |
cfaa38a17d56
8008707: build-infra: Closed (deploy) can't be built using environment from SDK SetEnv.cmd
erikj
parents:
15844
diff
changeset
|
162 |
if test "x$PROGRAMFILES" != x; then |
28901
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
163 |
TOOLCHAIN_CHECK_POSSIBLE_VISUAL_STUDIO_ROOT([${VS_VERSION}], |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
164 |
[$PROGRAMFILES/$VS_INSTALL_DIR], [well-known name]) |
17818
cfaa38a17d56
8008707: build-infra: Closed (deploy) can't be built using environment from SDK SetEnv.cmd
erikj
parents:
15844
diff
changeset
|
165 |
fi |
28901
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
166 |
# Work around the insanely named ProgramFiles(x86) env variable |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
167 |
PROGRAMFILES_X86="`env | $SED -n 's/^ProgramFiles(x86)=//p'`" |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
168 |
if test "x$PROGRAMFILES_X86" != x; then |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
169 |
TOOLCHAIN_CHECK_POSSIBLE_VISUAL_STUDIO_ROOT([${VS_VERSION}], |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
170 |
[$PROGRAMFILES_X86/$VS_INSTALL_DIR], [well-known name]) |
14111 | 171 |
fi |
28901
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
172 |
TOOLCHAIN_CHECK_POSSIBLE_VISUAL_STUDIO_ROOT([${VS_VERSION}], |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
173 |
[C:/Program Files/$VS_INSTALL_DIR], [well-known name]) |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
174 |
TOOLCHAIN_CHECK_POSSIBLE_VISUAL_STUDIO_ROOT([${VS_VERSION}], |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
175 |
[C:/Program Files (x86)/$VS_INSTALL_DIR], [well-known name]) |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
176 |
|
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
177 |
if test "x$SDK_INSTALL_DIR" != x; then |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
178 |
if test "x$ProgramW6432" != x; then |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
179 |
TOOLCHAIN_CHECK_POSSIBLE_WIN_SDK_ROOT([${VS_VERSION}], |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
180 |
[$ProgramW6432/$SDK_INSTALL_DIR], [well-known name]) |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
181 |
fi |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
182 |
if test "x$PROGRAMW6432" != x; then |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
183 |
TOOLCHAIN_CHECK_POSSIBLE_WIN_SDK_ROOT([${VS_VERSION}], |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
184 |
[$PROGRAMW6432/$SDK_INSTALL_DIR], [well-known name]) |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
185 |
fi |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
186 |
if test "x$PROGRAMFILES" != x; then |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
187 |
TOOLCHAIN_CHECK_POSSIBLE_WIN_SDK_ROOT([${VS_VERSION}], |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
188 |
[$PROGRAMFILES/$SDK_INSTALL_DIR], [well-known name]) |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
189 |
fi |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
190 |
TOOLCHAIN_CHECK_POSSIBLE_WIN_SDK_ROOT([${VS_VERSION}], |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
191 |
[C:/Program Files/$SDK_INSTALL_DIR], [well-known name]) |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
192 |
TOOLCHAIN_CHECK_POSSIBLE_WIN_SDK_ROOT([${VS_VERSION}], |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
193 |
[C:/Program Files (x86)/$SDK_INSTALL_DIR], [well-known name]) |
14111 | 194 |
fi |
195 |
]) |
|
196 |
||
28901
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
197 |
################################################################################ |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
198 |
|
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
199 |
AC_DEFUN([TOOLCHAIN_FIND_VISUAL_STUDIO], |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
200 |
[ |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
201 |
AC_ARG_WITH(toolchain-version, [AS_HELP_STRING([--with-toolchain-version], |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
202 |
[the version of the toolchain to look for, use '--help' to show possible values @<:@platform dependent@:>@])]) |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
203 |
|
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
204 |
if test "x$with_toolchain_version" = xlist; then |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
205 |
# List all toolchains |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
206 |
AC_MSG_NOTICE([The following toolchain versions are valid on this platform:]) |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
207 |
for version in $VALID_VS_VERSIONS; do |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
208 |
eval VS_DESCRIPTION=\${VS_DESCRIPTION_$version} |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
209 |
$PRINTF " %-10s %s\n" $version "$VS_DESCRIPTION" |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
210 |
done |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
211 |
|
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
212 |
exit 0 |
30022 | 213 |
elif test "x$DEVKIT_VS_VERSION" != x; then |
214 |
VS_VERSION=$DEVKIT_VS_VERSION |
|
215 |
TOOLCHAIN_VERSION=$VS_VERSION |
|
216 |
eval VS_DESCRIPTION="\${VS_DESCRIPTION_${VS_VERSION}}" |
|
217 |
eval VS_VERSION_INTERNAL="\${VS_VERSION_INTERNAL_${VS_VERSION}}" |
|
218 |
eval MSVCR_NAME="\${VS_MSVCR_${VS_VERSION}}" |
|
219 |
eval MSVCP_NAME="\${VS_MSVCP_${VS_VERSION}}" |
|
220 |
eval PLATFORM_TOOLSET="\${VS_VS_PLATFORM_NAME_${VS_VERSION}}" |
|
221 |
VS_PATH="$TOOLCHAIN_PATH:$PATH" |
|
222 |
||
223 |
# Convert DEVKIT_VS_INCLUDE into windows style VS_INCLUDE so that it |
|
224 |
# can still be exported as INCLUDE for compiler invocations without |
|
225 |
# SYSROOT_CFLAGS |
|
226 |
OLDIFS="$IFS" |
|
227 |
IFS=";" |
|
228 |
for i in $DEVKIT_VS_INCLUDE; do |
|
229 |
ipath=$i |
|
230 |
BASIC_WINDOWS_REWRITE_AS_WINDOWS_MIXED_PATH([ipath]) |
|
231 |
VS_INCLUDE="$VS_INCLUDE;$ipath" |
|
232 |
done |
|
233 |
# Convert DEVKIT_VS_LIB into VS_LIB so that it can still be exported |
|
234 |
# as LIB for compiler invocations without SYSROOT_LDFLAGS |
|
235 |
for i in $DEVKIT_VS_LIB; do |
|
236 |
libpath=$i |
|
237 |
BASIC_WINDOWS_REWRITE_AS_WINDOWS_MIXED_PATH([libpath]) |
|
238 |
VS_LIB="$VS_LIB;$libpath" |
|
239 |
done |
|
240 |
IFS="$OLDIFS" |
|
241 |
||
242 |
AC_MSG_NOTICE([Found devkit $VS_DESCRIPTION]) |
|
243 |
||
28901
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
244 |
elif test "x$with_toolchain_version" != x; then |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
245 |
# User override; check that it is valid |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
246 |
if test "x${VALID_VS_VERSIONS/$with_toolchain_version/}" = "x${VALID_VS_VERSIONS}"; then |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
247 |
AC_MSG_NOTICE([Visual Studio version $with_toolchain_version is not valid.]) |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
248 |
AC_MSG_NOTICE([Valid Visual Studio versions: $VALID_VS_VERSIONS.]) |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
249 |
AC_MSG_ERROR([Cannot continue.]) |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
250 |
fi |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
251 |
VS_VERSIONS_PROBE_LIST="$with_toolchain_version" |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
252 |
else |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
253 |
# No flag given, use default |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
254 |
VS_VERSIONS_PROBE_LIST="$VALID_VS_VERSIONS" |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
255 |
fi |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
256 |
|
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
257 |
for VS_VERSION in $VS_VERSIONS_PROBE_LIST; do |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
258 |
TOOLCHAIN_FIND_VISUAL_STUDIO_BAT_FILE([$VS_VERSION]) |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
259 |
if test "x$VS_ENV_CMD" != x; then |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
260 |
TOOLCHAIN_VERSION=$VS_VERSION |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
261 |
eval VS_DESCRIPTION="\${VS_DESCRIPTION_${VS_VERSION}}" |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
262 |
eval VS_VERSION_INTERNAL="\${VS_VERSION_INTERNAL_${VS_VERSION}}" |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
263 |
eval MSVCR_NAME="\${VS_MSVCR_${VS_VERSION}}" |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
264 |
eval MSVCP_NAME="\${VS_MSVCP_${VS_VERSION}}" |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
265 |
# The rest of the variables are already evaled while probing |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
266 |
AC_MSG_NOTICE([Found $VS_DESCRIPTION]) |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
267 |
break |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
268 |
fi |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
269 |
done |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
270 |
]) |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
271 |
|
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
272 |
################################################################################ |
14111 | 273 |
# Check if the VS env variables were setup prior to running configure. |
274 |
# If not, then find vcvarsall.bat and run it automatically, and integrate |
|
275 |
# the set env variables into the spec file. |
|
276 |
AC_DEFUN([TOOLCHAIN_SETUP_VISUAL_STUDIO_ENV], |
|
277 |
[ |
|
20363 | 278 |
# Store path to cygwin link.exe to help excluding it when searching for |
14111 | 279 |
# VS linker. This must be done before changing the PATH when looking for VS. |
280 |
AC_PATH_PROG(CYGWIN_LINK, link) |
|
281 |
if test "x$CYGWIN_LINK" != x; then |
|
282 |
AC_MSG_CHECKING([if the first found link.exe is actually the Cygwin link tool]) |
|
283 |
"$CYGWIN_LINK" --version > /dev/null |
|
284 |
if test $? -eq 0 ; then |
|
285 |
AC_MSG_RESULT([yes]) |
|
286 |
else |
|
287 |
AC_MSG_RESULT([no]) |
|
288 |
# This might be the VS linker. Don't exclude it later on. |
|
289 |
CYGWIN_LINK="" |
|
290 |
fi |
|
291 |
fi |
|
292 |
||
293 |
# First-hand choice is to locate and run the vsvars bat file. |
|
28901
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
294 |
TOOLCHAIN_FIND_VISUAL_STUDIO |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
295 |
|
30022 | 296 |
# If we have a devkit, skip all of the below. |
297 |
if test "x$DEVKIT_VS_VERSION" = x; then |
|
298 |
if test "x$VS_ENV_CMD" != x; then |
|
299 |
# We have found a Visual Studio environment on disk, let's extract variables from the vsvars bat file. |
|
300 |
BASIC_FIXUP_EXECUTABLE(VS_ENV_CMD) |
|
14111 | 301 |
|
30022 | 302 |
# Lets extract the variables that are set by vcvarsall.bat/vsvars32.bat/vsvars64.bat |
303 |
AC_MSG_NOTICE([Trying to extract Visual Studio environment variables]) |
|
23429 | 304 |
|
30022 | 305 |
# We need to create a couple of temporary files. |
306 |
VS_ENV_TMP_DIR="$CONFIGURESUPPORT_OUTPUTDIR/vs-env" |
|
307 |
$MKDIR -p $VS_ENV_TMP_DIR |
|
14111 | 308 |
|
30022 | 309 |
# Cannot use the VS10 setup script directly (since it only updates the DOS subshell environment). |
310 |
# Instead create a shell script which will set the relevant variables when run. |
|
311 |
WINPATH_VS_ENV_CMD="$VS_ENV_CMD" |
|
312 |
BASIC_WINDOWS_REWRITE_AS_WINDOWS_MIXED_PATH([WINPATH_VS_ENV_CMD]) |
|
313 |
WINPATH_BASH="$BASH" |
|
314 |
BASIC_WINDOWS_REWRITE_AS_WINDOWS_MIXED_PATH([WINPATH_BASH]) |
|
14111 | 315 |
|
30022 | 316 |
# Generate a DOS batch file which runs $VS_ENV_CMD, and then creates a shell |
317 |
# script (executable by bash) that will setup the important variables. |
|
318 |
EXTRACT_VC_ENV_BAT_FILE="$VS_ENV_TMP_DIR/extract-vs-env.bat" |
|
319 |
$ECHO "@echo off" > $EXTRACT_VC_ENV_BAT_FILE |
|
320 |
# This will end up something like: |
|
321 |
# call C:/progra~2/micros~2.0/vc/bin/amd64/vcvars64.bat |
|
322 |
$ECHO "call $WINPATH_VS_ENV_CMD $VS_ENV_ARGS" >> $EXTRACT_VC_ENV_BAT_FILE |
|
323 |
# These will end up something like: |
|
324 |
# C:/CygWin/bin/bash -c 'echo VS_PATH=\"$PATH\" > localdevenv.sh |
|
325 |
# The trailing space for everyone except PATH is no typo, but is needed due |
|
326 |
# to trailing \ in the Windows paths. These will be stripped later. |
|
327 |
$ECHO "$WINPATH_BASH -c 'echo VS_PATH="'\"$PATH\" > set-vs-env.sh' \ |
|
328 |
>> $EXTRACT_VC_ENV_BAT_FILE |
|
329 |
$ECHO "$WINPATH_BASH -c 'echo VS_INCLUDE="'\"$INCLUDE\;$include \" >> set-vs-env.sh' \ |
|
330 |
>> $EXTRACT_VC_ENV_BAT_FILE |
|
331 |
$ECHO "$WINPATH_BASH -c 'echo VS_LIB="'\"$LIB\;$lib \" >> set-vs-env.sh' \ |
|
332 |
>> $EXTRACT_VC_ENV_BAT_FILE |
|
333 |
$ECHO "$WINPATH_BASH -c 'echo VCINSTALLDIR="'\"$VCINSTALLDIR \" >> set-vs-env.sh' \ |
|
334 |
>> $EXTRACT_VC_ENV_BAT_FILE |
|
335 |
$ECHO "$WINPATH_BASH -c 'echo WindowsSdkDir="'\"$WindowsSdkDir \" >> set-vs-env.sh' \ |
|
336 |
>> $EXTRACT_VC_ENV_BAT_FILE |
|
337 |
$ECHO "$WINPATH_BASH -c 'echo WINDOWSSDKDIR="'\"$WINDOWSSDKDIR \" >> set-vs-env.sh' \ |
|
338 |
>> $EXTRACT_VC_ENV_BAT_FILE |
|
14111 | 339 |
|
30022 | 340 |
# Now execute the newly created bat file. |
341 |
# The | cat is to stop SetEnv.Cmd to mess with system colors on msys. |
|
342 |
# Change directory so we don't need to mess with Windows paths in redirects. |
|
343 |
cd $VS_ENV_TMP_DIR |
|
344 |
cmd /c extract-vs-env.bat | $CAT |
|
345 |
cd $CURDIR |
|
14111 | 346 |
|
30022 | 347 |
if test ! -s $VS_ENV_TMP_DIR/set-vs-env.sh; then |
348 |
AC_MSG_NOTICE([Could not succesfully extract the envionment variables needed for the VS setup.]) |
|
349 |
AC_MSG_NOTICE([Try setting --with-tools-dir to the VC/bin directory within the VS installation]) |
|
350 |
AC_MSG_NOTICE([or run "bash.exe -l" from a VS command prompt and then run configure from there.]) |
|
351 |
AC_MSG_ERROR([Cannot continue]) |
|
352 |
fi |
|
14111 | 353 |
|
30022 | 354 |
# Now set all paths and other env variables. This will allow the rest of |
355 |
# the configure script to find and run the compiler in the proper way. |
|
356 |
AC_MSG_NOTICE([Setting extracted environment variables]) |
|
357 |
. $VS_ENV_TMP_DIR/set-vs-env.sh |
|
358 |
# Now we have VS_PATH, VS_INCLUDE, VS_LIB. For further checking, we |
|
359 |
# also define VCINSTALLDIR, WindowsSdkDir and WINDOWSSDKDIR. |
|
360 |
else |
|
361 |
# We did not find a vsvars bat file, let's hope we are run from a VS command prompt. |
|
362 |
AC_MSG_NOTICE([Cannot locate a valid Visual Studio installation, checking current environment]) |
|
363 |
fi |
|
14111 | 364 |
fi |
365 |
||
23429 | 366 |
# At this point, we should have correct variables in the environment, or we can't continue. |
14111 | 367 |
AC_MSG_CHECKING([for Visual Studio variables]) |
20363 | 368 |
|
30022 | 369 |
if test "x$VCINSTALLDIR" != x || test "x$WindowsSDKDir" != x \ |
370 |
|| test "x$WINDOWSSDKDIR" != x || test "x$DEVKIT_NAME" != x; then |
|
23429 | 371 |
if test "x$VS_INCLUDE" = x || test "x$VS_LIB" = x; then |
14111 | 372 |
AC_MSG_RESULT([present but broken]) |
373 |
AC_MSG_ERROR([Your VC command prompt seems broken, INCLUDE and/or LIB is missing.]) |
|
374 |
else |
|
375 |
AC_MSG_RESULT([ok]) |
|
28809
6481e27e00ee
8071329: Stop exporting INCLUDE and LIB when building on windows
erikj
parents:
28287
diff
changeset
|
376 |
# Remove any trailing "\" ";" and " " from the variables. |
6481e27e00ee
8071329: Stop exporting INCLUDE and LIB when building on windows
erikj
parents:
28287
diff
changeset
|
377 |
VS_INCLUDE=`$ECHO "$VS_INCLUDE" | $SED -e 's/\\\\*;* *$//'` |
6481e27e00ee
8071329: Stop exporting INCLUDE and LIB when building on windows
erikj
parents:
28287
diff
changeset
|
378 |
VS_LIB=`$ECHO "$VS_LIB" | $SED 's/\\\\*;* *$//'` |
23429 | 379 |
VCINSTALLDIR=`$ECHO "$VCINSTALLDIR" | $SED 's/\\\\* *$//'` |
380 |
WindowsSDKDir=`$ECHO "$WindowsSDKDir" | $SED 's/\\\\* *$//'` |
|
381 |
WINDOWSSDKDIR=`$ECHO "$WINDOWSSDKDIR" | $SED 's/\\\\* *$//'` |
|
23432
f8964bac59db
8039030: 9-dev windows-i586 build failed with mktemp: command not found
erikj
parents:
23429
diff
changeset
|
382 |
# Remove any paths containing # (typically F#) as that messes up make. This |
f8964bac59db
8039030: 9-dev windows-i586 build failed with mktemp: command not found
erikj
parents:
23429
diff
changeset
|
383 |
# is needed if visual studio was installed with F# support. |
f8964bac59db
8039030: 9-dev windows-i586 build failed with mktemp: command not found
erikj
parents:
23429
diff
changeset
|
384 |
VS_PATH=`$ECHO "$VS_PATH" | $SED 's/[[^:#]]*#[^:]*://g'` |
23429 | 385 |
|
386 |
AC_SUBST(VS_PATH) |
|
14111 | 387 |
AC_SUBST(VS_INCLUDE) |
388 |
AC_SUBST(VS_LIB) |
|
28809
6481e27e00ee
8071329: Stop exporting INCLUDE and LIB when building on windows
erikj
parents:
28287
diff
changeset
|
389 |
|
6481e27e00ee
8071329: Stop exporting INCLUDE and LIB when building on windows
erikj
parents:
28287
diff
changeset
|
390 |
# Convert VS_INCLUDE into SYSROOT_CFLAGS |
6481e27e00ee
8071329: Stop exporting INCLUDE and LIB when building on windows
erikj
parents:
28287
diff
changeset
|
391 |
OLDIFS="$IFS" |
6481e27e00ee
8071329: Stop exporting INCLUDE and LIB when building on windows
erikj
parents:
28287
diff
changeset
|
392 |
IFS=";" |
6481e27e00ee
8071329: Stop exporting INCLUDE and LIB when building on windows
erikj
parents:
28287
diff
changeset
|
393 |
for i in $VS_INCLUDE; do |
6481e27e00ee
8071329: Stop exporting INCLUDE and LIB when building on windows
erikj
parents:
28287
diff
changeset
|
394 |
ipath=$i |
29065
907bcc4ce290
8073864: Configure must handle invalid elements on INCLUDE/LIB for visualstudio
ihse
parents:
28908
diff
changeset
|
395 |
# Only process non-empty elements |
907bcc4ce290
8073864: Configure must handle invalid elements on INCLUDE/LIB for visualstudio
ihse
parents:
28908
diff
changeset
|
396 |
if test "x$ipath" != x; then |
907bcc4ce290
8073864: Configure must handle invalid elements on INCLUDE/LIB for visualstudio
ihse
parents:
28908
diff
changeset
|
397 |
IFS="$OLDIFS" |
907bcc4ce290
8073864: Configure must handle invalid elements on INCLUDE/LIB for visualstudio
ihse
parents:
28908
diff
changeset
|
398 |
# Check that directory exists before calling fixup_path |
907bcc4ce290
8073864: Configure must handle invalid elements on INCLUDE/LIB for visualstudio
ihse
parents:
28908
diff
changeset
|
399 |
testpath=$ipath |
907bcc4ce290
8073864: Configure must handle invalid elements on INCLUDE/LIB for visualstudio
ihse
parents:
28908
diff
changeset
|
400 |
BASIC_WINDOWS_REWRITE_AS_UNIX_PATH([testpath]) |
907bcc4ce290
8073864: Configure must handle invalid elements on INCLUDE/LIB for visualstudio
ihse
parents:
28908
diff
changeset
|
401 |
if test -d "$testpath"; then |
907bcc4ce290
8073864: Configure must handle invalid elements on INCLUDE/LIB for visualstudio
ihse
parents:
28908
diff
changeset
|
402 |
BASIC_FIXUP_PATH([ipath]) |
907bcc4ce290
8073864: Configure must handle invalid elements on INCLUDE/LIB for visualstudio
ihse
parents:
28908
diff
changeset
|
403 |
SYSROOT_CFLAGS="$SYSROOT_CFLAGS -I$ipath" |
907bcc4ce290
8073864: Configure must handle invalid elements on INCLUDE/LIB for visualstudio
ihse
parents:
28908
diff
changeset
|
404 |
fi |
907bcc4ce290
8073864: Configure must handle invalid elements on INCLUDE/LIB for visualstudio
ihse
parents:
28908
diff
changeset
|
405 |
IFS=";" |
907bcc4ce290
8073864: Configure must handle invalid elements on INCLUDE/LIB for visualstudio
ihse
parents:
28908
diff
changeset
|
406 |
fi |
28809
6481e27e00ee
8071329: Stop exporting INCLUDE and LIB when building on windows
erikj
parents:
28287
diff
changeset
|
407 |
done |
6481e27e00ee
8071329: Stop exporting INCLUDE and LIB when building on windows
erikj
parents:
28287
diff
changeset
|
408 |
# Convert VS_LIB into SYSROOT_LDFLAGS |
6481e27e00ee
8071329: Stop exporting INCLUDE and LIB when building on windows
erikj
parents:
28287
diff
changeset
|
409 |
for i in $VS_LIB; do |
6481e27e00ee
8071329: Stop exporting INCLUDE and LIB when building on windows
erikj
parents:
28287
diff
changeset
|
410 |
libpath=$i |
29065
907bcc4ce290
8073864: Configure must handle invalid elements on INCLUDE/LIB for visualstudio
ihse
parents:
28908
diff
changeset
|
411 |
# Only process non-empty elements |
907bcc4ce290
8073864: Configure must handle invalid elements on INCLUDE/LIB for visualstudio
ihse
parents:
28908
diff
changeset
|
412 |
if test "x$libpath" != x; then |
907bcc4ce290
8073864: Configure must handle invalid elements on INCLUDE/LIB for visualstudio
ihse
parents:
28908
diff
changeset
|
413 |
IFS="$OLDIFS" |
907bcc4ce290
8073864: Configure must handle invalid elements on INCLUDE/LIB for visualstudio
ihse
parents:
28908
diff
changeset
|
414 |
# Check that directory exists before calling fixup_path |
907bcc4ce290
8073864: Configure must handle invalid elements on INCLUDE/LIB for visualstudio
ihse
parents:
28908
diff
changeset
|
415 |
testpath=$libpath |
907bcc4ce290
8073864: Configure must handle invalid elements on INCLUDE/LIB for visualstudio
ihse
parents:
28908
diff
changeset
|
416 |
BASIC_WINDOWS_REWRITE_AS_UNIX_PATH([testpath]) |
907bcc4ce290
8073864: Configure must handle invalid elements on INCLUDE/LIB for visualstudio
ihse
parents:
28908
diff
changeset
|
417 |
if test -d "$testpath"; then |
907bcc4ce290
8073864: Configure must handle invalid elements on INCLUDE/LIB for visualstudio
ihse
parents:
28908
diff
changeset
|
418 |
BASIC_FIXUP_PATH([libpath]) |
907bcc4ce290
8073864: Configure must handle invalid elements on INCLUDE/LIB for visualstudio
ihse
parents:
28908
diff
changeset
|
419 |
SYSROOT_LDFLAGS="$SYSROOT_LDFLAGS -libpath:$libpath" |
907bcc4ce290
8073864: Configure must handle invalid elements on INCLUDE/LIB for visualstudio
ihse
parents:
28908
diff
changeset
|
420 |
fi |
907bcc4ce290
8073864: Configure must handle invalid elements on INCLUDE/LIB for visualstudio
ihse
parents:
28908
diff
changeset
|
421 |
IFS=";" |
907bcc4ce290
8073864: Configure must handle invalid elements on INCLUDE/LIB for visualstudio
ihse
parents:
28908
diff
changeset
|
422 |
fi |
28809
6481e27e00ee
8071329: Stop exporting INCLUDE and LIB when building on windows
erikj
parents:
28287
diff
changeset
|
423 |
done |
6481e27e00ee
8071329: Stop exporting INCLUDE and LIB when building on windows
erikj
parents:
28287
diff
changeset
|
424 |
IFS="$OLDIFS" |
14111 | 425 |
fi |
426 |
else |
|
427 |
AC_MSG_RESULT([not found]) |
|
428 |
||
429 |
if test "x$VS_ENV_CMD" = x; then |
|
430 |
AC_MSG_NOTICE([Cannot locate a valid Visual Studio or Windows SDK installation on disk,]) |
|
431 |
AC_MSG_NOTICE([nor is this script run from a Visual Studio command prompt.]) |
|
432 |
else |
|
433 |
AC_MSG_NOTICE([Running the extraction script failed.]) |
|
434 |
fi |
|
435 |
AC_MSG_NOTICE([Try setting --with-tools-dir to the VC/bin directory within the VS installation]) |
|
436 |
AC_MSG_NOTICE([or run "bash.exe -l" from a VS command prompt and then run configure from there.]) |
|
437 |
AC_MSG_ERROR([Cannot continue]) |
|
438 |
fi |
|
20643 | 439 |
]) |
20363 | 440 |
|
28901
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
441 |
AC_DEFUN([TOOLCHAIN_CHECK_POSSIBLE_MSVC_DLL], |
20643 | 442 |
[ |
28901
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
443 |
DLL_NAME="$1" |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
444 |
POSSIBLE_MSVC_DLL="$2" |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
445 |
METHOD="$3" |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
446 |
if test -n "$POSSIBLE_MSVC_DLL" -a -e "$POSSIBLE_MSVC_DLL"; then |
30022 | 447 |
AC_MSG_NOTICE([Found $DLL_NAME at $POSSIBLE_MSVC_DLL using $METHOD]) |
29643
89e91c724316
8076531: Switch default compiler on Windows to VS2013
erikj
parents:
29065
diff
changeset
|
448 |
|
20643 | 449 |
# Need to check if the found msvcr is correct architecture |
30022 | 450 |
AC_MSG_CHECKING([found $DLL_NAME architecture]) |
28901
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
451 |
MSVC_DLL_FILETYPE=`$FILE -b "$POSSIBLE_MSVC_DLL"` |
25882 | 452 |
if test "x$OPENJDK_BUILD_OS_ENV" = "xwindows.msys"; then |
453 |
# The MSYS 'file' command returns "PE32 executable for MS Windows (DLL) (GUI) Intel 80386 32-bit" |
|
454 |
# on x32 and "PE32+ executable for MS Windows (DLL) (GUI) Mono/.Net assembly" on x64 systems. |
|
455 |
if test "x$OPENJDK_TARGET_CPU_BITS" = x32; then |
|
456 |
CORRECT_MSVCR_ARCH="PE32 executable" |
|
457 |
else |
|
458 |
CORRECT_MSVCR_ARCH="PE32+ executable" |
|
459 |
fi |
|
20643 | 460 |
else |
25882 | 461 |
if test "x$OPENJDK_TARGET_CPU_BITS" = x32; then |
462 |
CORRECT_MSVCR_ARCH=386 |
|
463 |
else |
|
464 |
CORRECT_MSVCR_ARCH=x86-64 |
|
465 |
fi |
|
20643 | 466 |
fi |
28901
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
467 |
if $ECHO "$MSVC_DLL_FILETYPE" | $GREP "$CORRECT_MSVCR_ARCH" 2>&1 > /dev/null; then |
20643 | 468 |
AC_MSG_RESULT([ok]) |
28901
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
469 |
MSVC_DLL="$POSSIBLE_MSVC_DLL" |
30022 | 470 |
BASIC_FIXUP_PATH(MSVC_DLL) |
471 |
AC_MSG_CHECKING([for $DLL_NAME]) |
|
28901
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
472 |
AC_MSG_RESULT([$MSVC_DLL]) |
20643 | 473 |
else |
474 |
AC_MSG_RESULT([incorrect, ignoring]) |
|
30022 | 475 |
AC_MSG_NOTICE([The file type of the located $DLL_NAME is $MSVC_DLL_FILETYPE]) |
20643 | 476 |
fi |
477 |
fi |
|
478 |
]) |
|
479 |
||
28901
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
480 |
AC_DEFUN([TOOLCHAIN_SETUP_MSVC_DLL], |
20643 | 481 |
[ |
30022 | 482 |
DLL_NAME="$1" |
28901
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
483 |
MSVC_DLL= |
20643 | 484 |
|
28901
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
485 |
if test "x$MSVC_DLL" = x; then |
20643 | 486 |
# Probe: Using well-known location from Visual Studio 10.0 |
14111 | 487 |
if test "x$VCINSTALLDIR" != x; then |
20643 | 488 |
CYGWIN_VC_INSTALL_DIR="$VCINSTALLDIR" |
489 |
BASIC_WINDOWS_REWRITE_AS_UNIX_PATH(CYGWIN_VC_INSTALL_DIR) |
|
14111 | 490 |
if test "x$OPENJDK_TARGET_CPU_BITS" = x64; then |
28901
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
491 |
POSSIBLE_MSVC_DLL="$CYGWIN_VC_INSTALL_DIR/redist/x64/Microsoft.VC${VS_VERSION_INTERNAL}.CRT/$DLL_NAME" |
14111 | 492 |
else |
28901
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
493 |
POSSIBLE_MSVC_DLL="$CYGWIN_VC_INSTALL_DIR/redist/x86/Microsoft.VC${VS_VERSION_INTERNAL}.CRT/$DLL_NAME" |
20643 | 494 |
fi |
28901
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
495 |
$ECHO "POSSIBLE_MSVC_DLL $POSSIBLEMSVC_DLL" |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
496 |
TOOLCHAIN_CHECK_POSSIBLE_MSVC_DLL([$DLL_NAME], [$POSSIBLE_MSVC_DLL], |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
497 |
[well-known location in VCINSTALLDIR]) |
20643 | 498 |
fi |
499 |
fi |
|
500 |
||
28901
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
501 |
if test "x$MSVC_DLL" = x; then |
20643 | 502 |
# Probe: Check in the Boot JDK directory. |
28901
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
503 |
POSSIBLE_MSVC_DLL="$BOOT_JDK/bin/$DLL_NAME" |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
504 |
TOOLCHAIN_CHECK_POSSIBLE_MSVC_DLL([$DLL_NAME], [$POSSIBLE_MSVC_DLL], |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
505 |
[well-known location in Boot JDK]) |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
506 |
fi |
29643
89e91c724316
8076531: Switch default compiler on Windows to VS2013
erikj
parents:
29065
diff
changeset
|
507 |
|
28901
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
508 |
if test "x$MSVC_DLL" = x; then |
29643
89e91c724316
8076531: Switch default compiler on Windows to VS2013
erikj
parents:
29065
diff
changeset
|
509 |
# Probe: Look in the Windows system32 directory |
28901
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
510 |
CYGWIN_SYSTEMROOT="$SYSTEMROOT" |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
511 |
BASIC_WINDOWS_REWRITE_AS_UNIX_PATH(CYGWIN_SYSTEMROOT) |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
512 |
POSSIBLE_MSVC_DLL="$CYGWIN_SYSTEMROOT/system32/$DLL_NAME" |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
513 |
TOOLCHAIN_CHECK_POSSIBLE_MSVC_DLL([$DLL_NAME], [$POSSIBLE_MSVC_DLL], |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
514 |
[well-known location in SYSTEMROOT]) |
20643 | 515 |
fi |
27595
cff167b3bfa2
8065914: Various improvements and cleanup of build system
ihse
parents:
26400
diff
changeset
|
516 |
|
28901
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
517 |
if test "x$MSVC_DLL" = x; then |
20643 | 518 |
# Probe: If Visual Studio Express is installed, there is usually one with the debugger |
519 |
if test "x$VS100COMNTOOLS" != x; then |
|
520 |
CYGWIN_VS_TOOLS_DIR="$VS100COMNTOOLS/.." |
|
521 |
BASIC_WINDOWS_REWRITE_AS_UNIX_PATH(CYGWIN_VS_TOOLS_DIR) |
|
522 |
if test "x$OPENJDK_TARGET_CPU_BITS" = x64; then |
|
28901
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
523 |
POSSIBLE_MSVC_DLL=`$FIND "$CYGWIN_VS_TOOLS_DIR" -name $DLL_NAME \ |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
524 |
| $GREP -i /x64/ | $HEAD --lines 1` |
20643 | 525 |
else |
28901
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
526 |
POSSIBLE_MSVC_DLL=`$FIND "$CYGWIN_VS_TOOLS_DIR" -name $DLL_NAME \ |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
527 |
| $GREP -i /x86/ | $HEAD --lines 1` |
20643 | 528 |
fi |
28901
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
529 |
TOOLCHAIN_CHECK_POSSIBLE_MSVC_DLL([$DLL_NAME], [$POSSIBLE_MSVC_DLL], |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
530 |
[search of VS100COMNTOOLS]) |
20643 | 531 |
fi |
532 |
fi |
|
29643
89e91c724316
8076531: Switch default compiler on Windows to VS2013
erikj
parents:
29065
diff
changeset
|
533 |
|
28901
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
534 |
if test "x$MSVC_DLL" = x; then |
20643 | 535 |
# Probe: Search wildly in the VCINSTALLDIR. We've probably lost by now. |
28901
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
536 |
# (This was the original behaviour; kept since it might turn something up) |
20643 | 537 |
if test "x$CYGWIN_VC_INSTALL_DIR" != x; then |
538 |
if test "x$OPENJDK_TARGET_CPU_BITS" = x64; then |
|
28901
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
539 |
POSSIBLE_MSVC_DLL=`$FIND "$CYGWIN_VC_INSTALL_DIR" -name $DLL_NAME \ |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
540 |
| $GREP x64 | $HEAD --lines 1` |
20643 | 541 |
else |
28901
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
542 |
POSSIBLE_MSVC_DLL=`$FIND "$CYGWIN_VC_INSTALL_DIR" -name $DLL_NAME \ |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
543 |
| $GREP x86 | $GREP -v ia64 | $GREP -v x64 | $HEAD --lines 1` |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
544 |
if test "x$POSSIBLE_MSVC_DLL" = x; then |
20643 | 545 |
# We're grasping at straws now... |
28901
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
546 |
POSSIBLE_MSVC_DLL=`$FIND "$CYGWIN_VC_INSTALL_DIR" -name $DLL_NAME \ |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
547 |
| $HEAD --lines 1` |
14111 | 548 |
fi |
549 |
fi |
|
29643
89e91c724316
8076531: Switch default compiler on Windows to VS2013
erikj
parents:
29065
diff
changeset
|
550 |
|
28901
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
551 |
TOOLCHAIN_CHECK_POSSIBLE_MSVC_DLL([$DLL_NAME], [$POSSIBLE_MSVC_DLL], |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
552 |
[search of VCINSTALLDIR]) |
14111 | 553 |
fi |
554 |
fi |
|
29643
89e91c724316
8076531: Switch default compiler on Windows to VS2013
erikj
parents:
29065
diff
changeset
|
555 |
|
28901
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
556 |
if test "x$MSVC_DLL" = x; then |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
557 |
AC_MSG_CHECKING([for $DLL_NAME]) |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
558 |
AC_MSG_RESULT([no]) |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
559 |
AC_MSG_ERROR([Could not find $DLL_NAME. Please specify using --with-msvcr-dll.]) |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
560 |
fi |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
561 |
]) |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
562 |
|
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
563 |
AC_DEFUN([TOOLCHAIN_SETUP_VS_RUNTIME_DLLS], |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
564 |
[ |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
565 |
AC_ARG_WITH(msvcr-dll, [AS_HELP_STRING([--with-msvcr-dll], |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
566 |
[path to microsoft C runtime dll (msvcr*.dll) (Windows only) @<:@probed@:>@])]) |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
567 |
|
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
568 |
if test "x$with_msvcr_dll" != x; then |
42300
218374d35efd
8039103: "explicitly" is misspelled as "explicitely" in configure scripts
ihse
parents:
30022
diff
changeset
|
569 |
# If given explicitly by user, do not probe. If not present, fail directly. |
30022 | 570 |
TOOLCHAIN_CHECK_POSSIBLE_MSVC_DLL($MSVCR_NAME, [$with_msvcr_dll], [--with-msvcr-dll]) |
28901
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
571 |
if test "x$MSVC_DLL" = x; then |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
572 |
AC_MSG_ERROR([Could not find a proper $MSVCR_NAME as specified by --with-msvcr-dll]) |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
573 |
fi |
30022 | 574 |
MSVCR_DLL="$MSVC_DLL" |
575 |
elif test "x$DEVKIT_MSVCR_DLL" != x; then |
|
576 |
TOOLCHAIN_CHECK_POSSIBLE_MSVC_DLL($MSVCR_NAME, [$DEVKIT_MSVCR_DLL], [devkit]) |
|
577 |
if test "x$MSVC_DLL" = x; then |
|
578 |
AC_MSG_ERROR([Could not find a proper $MSVCR_NAME as specified by devkit]) |
|
579 |
fi |
|
580 |
MSVCR_DLL="$MSVC_DLL" |
|
28901
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
581 |
else |
30022 | 582 |
TOOLCHAIN_SETUP_MSVC_DLL([${MSVCR_NAME}]) |
583 |
MSVCR_DLL="$MSVC_DLL" |
|
14111 | 584 |
fi |
30022 | 585 |
AC_SUBST(MSVCR_DLL) |
20643 | 586 |
|
28901
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
587 |
AC_ARG_WITH(msvcp-dll, [AS_HELP_STRING([--with-msvcp-dll], |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
588 |
[path to microsoft C++ runtime dll (msvcp*.dll) (Windows only) @<:@probed@:>@])]) |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
589 |
|
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
590 |
if test "x$MSVCP_NAME" != "x"; then |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
591 |
if test "x$with_msvcp_dll" != x; then |
42300
218374d35efd
8039103: "explicitly" is misspelled as "explicitely" in configure scripts
ihse
parents:
30022
diff
changeset
|
592 |
# If given explicitly by user, do not probe. If not present, fail directly. |
30022 | 593 |
TOOLCHAIN_CHECK_POSSIBLE_MSVC_DLL($MSVCP_NAME, [$with_msvcp_dll], [--with-msvcp-dll]) |
28901
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
594 |
if test "x$MSVC_DLL" = x; then |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
595 |
AC_MSG_ERROR([Could not find a proper $MSVCP_NAME as specified by --with-msvcp-dll]) |
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
596 |
fi |
30022 | 597 |
MSVCP_DLL="$MSVC_DLL" |
598 |
elif test "x$DEVKIT_MSVCP_DLL" != x; then |
|
599 |
TOOLCHAIN_CHECK_POSSIBLE_MSVC_DLL($MSVCP_NAME, [$DEVKIT_MSVCP_DLL], [devkit]) |
|
600 |
if test "x$MSVC_DLL" = x; then |
|
601 |
AC_MSG_ERROR([Could not find a proper $MSVCP_NAME as specified by devkit]) |
|
602 |
fi |
|
603 |
MSVCP_DLL="$MSVC_DLL" |
|
28901
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
604 |
else |
30022 | 605 |
TOOLCHAIN_SETUP_MSVC_DLL([${MSVCP_NAME}]) |
606 |
MSVCP_DLL="$MSVC_DLL" |
|
28901
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
607 |
fi |
30022 | 608 |
AC_SUBST(MSVCP_DLL) |
28901
5acc0ec03d06
8042707: Source changes needed to build JDK 9 with Visual Studio 2013 (VS2013)
erikj
parents:
28287
diff
changeset
|
609 |
fi |
14111 | 610 |
]) |