author | erikj |
Wed, 25 Jul 2018 08:36:46 -0700 | |
changeset 51237 | ea900a7dc7d7 |
parent 50295 | 84256425a4e9 |
child 53141 | 6f2d65f29de3 |
permissions | -rw-r--r-- |
31124 | 1 |
#!/bin/bash |
2 |
# |
|
48678 | 3 |
# Copyright (c) 2015, 2018, Oracle and/or its affiliates. All rights reserved. |
31124 | 4 |
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
5 |
# |
|
6 |
# This code is free software; you can redistribute it and/or modify it |
|
7 |
# under the terms of the GNU General Public License version 2 only, as |
|
8 |
# published by the Free Software Foundation. Oracle designates this |
|
9 |
# particular file as subject to the "Classpath" exception as provided |
|
10 |
# by Oracle in the LICENSE file that accompanied this code. |
|
11 |
# |
|
12 |
# This code is distributed in the hope that it will be useful, but WITHOUT |
|
13 |
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
14 |
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
15 |
# version 2 for more details (a copy is included in the LICENSE file that |
|
16 |
# accompanied this code). |
|
17 |
# |
|
18 |
# You should have received a copy of the GNU General Public License version |
|
19 |
# 2 along with this work; if not, write to the Free Software Foundation, |
|
20 |
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
21 |
# |
|
22 |
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
|
23 |
# or visit www.oracle.com if you need additional information or have any |
|
24 |
# questions. |
|
25 |
# |
|
26 |
||
48678 | 27 |
# This script copies parts of a Visual Studio installation into a devkit |
31124 | 28 |
# suitable for building OpenJDK and OracleJDK. Needs to run in Cygwin. |
29 |
# erik.joelsson@oracle.com |
|
30 |
||
48678 | 31 |
VS_VERSION="2017" |
32 |
VS_VERSION_NUM_NODOT="150" |
|
33 |
VS_DLL_VERSION="140" |
|
34 |
SDK_VERSION="10" |
|
35 |
SDK_FULL_VERSION="10.0.16299.0" |
|
36 |
MSVC_DIR="Microsoft.VC141.CRT" |
|
31124 | 37 |
|
38 |
SCRIPT_DIR="$(cd "$(dirname $0)" > /dev/null && pwd)" |
|
39 |
BUILD_DIR="${SCRIPT_DIR}/../../build/devkit" |
|
48678 | 40 |
|
41 |
################################################################################ |
|
42 |
# Prepare settings |
|
43 |
||
44 |
# Work around the insanely named ProgramFiles(x86) env variable |
|
45 |
PROGRAMFILES_X86="$(cygpath "$(env | sed -n 's/^ProgramFiles(x86)=//p')")" |
|
46 |
||
47 |
# Find Visual Studio installation dir |
|
48 |
eval VSNNNCOMNTOOLS="\"\${VS${VS_VERSION_NUM_NODOT}COMNTOOLS}\"" |
|
49 |
if [ -d "$VSNNNCOMNTOOLS" ]; then |
|
50 |
VS_INSTALL_DIR="$(cygpath "$VSNNNCOMNTOOLS/../..")" |
|
51 |
else |
|
52 |
VS_INSTALL_DIR="${PROGRAMFILES_X86}/Microsoft Visual Studio/2017" |
|
53 |
VS_INSTALL_DIR="$(ls -d "${VS_INSTALL_DIR}/"{Community,Professional} 2>/dev/null | head -n1)" |
|
54 |
VS_INSTALL_DIR="$(cygpath "$VS_INSTALL_DIR")" |
|
55 |
fi |
|
56 |
echo "VS_INSTALL_DIR: $VS_INSTALL_DIR" |
|
57 |
||
58 |
# Extract semantic version |
|
59 |
POTENTIAL_INI_FILES="Common7\IDE\wdexpress.isolation.ini Common7\IDE\devenv.isolation.ini" |
|
60 |
for f in $POTENTIAL_INI_FILES; do |
|
61 |
if [ -f "$VS_INSTALL_DIR/$f" ]; then |
|
62 |
VS_VERSION_SP="$(grep ^SemanticVersion= "$VS_INSTALL_DIR/$f")" |
|
63 |
# Remove SemnaticVersion= |
|
64 |
VS_VERSION_SP="${VS_VERSION_SP#*=}" |
|
65 |
# Remove suffix of too detailed numbering starting with + |
|
66 |
VS_VERSION_SP="${VS_VERSION_SP%+*}" |
|
67 |
break |
|
68 |
fi |
|
69 |
done |
|
70 |
if [ -z "$VS_VERSION_SP" ]; then |
|
71 |
echo "Failed to find SP version" |
|
72 |
exit 1 |
|
73 |
fi |
|
74 |
echo "Found Version SP: $VS_VERSION_SP" |
|
75 |
||
76 |
# Setup output dirs |
|
77 |
DEVKIT_ROOT="${BUILD_DIR}/VS${VS_VERSION}-${VS_VERSION_SP}-devkit" |
|
31124 | 78 |
DEVKIT_BUNDLE="${DEVKIT_ROOT}.tar.gz" |
79 |
||
80 |
echo "Creating devkit in $DEVKIT_ROOT" |
|
81 |
||
48678 | 82 |
MSVCR_DLL=${MSVC_DIR}/vcruntime${VS_DLL_VERSION}.dll |
83 |
MSVCP_DLL=${MSVC_DIR}/msvcp${VS_DLL_VERSION}.dll |
|
31124 | 84 |
|
85 |
################################################################################ |
|
86 |
# Copy Visual Studio files |
|
87 |
||
88 |
if [ ! -d $DEVKIT_ROOT/VC ]; then |
|
48678 | 89 |
VC_SUBDIR="VC/Tools/MSVC/14.12.25827" |
90 |
REDIST_SUBDIR="VC/Redist/MSVC/14.12.25810" |
|
31124 | 91 |
echo "Copying VC..." |
92 |
mkdir -p $DEVKIT_ROOT/VC/bin |
|
48678 | 93 |
cp -r "$VS_INSTALL_DIR/${VC_SUBDIR}/bin/Hostx64/x64" $DEVKIT_ROOT/VC/bin/ |
94 |
cp -r "$VS_INSTALL_DIR/${VC_SUBDIR}/bin/Hostx86/x86" $DEVKIT_ROOT/VC/bin/ |
|
31124 | 95 |
mkdir -p $DEVKIT_ROOT/VC/lib |
48678 | 96 |
cp -r "$VS_INSTALL_DIR/${VC_SUBDIR}/lib/x64" $DEVKIT_ROOT/VC/lib/ |
97 |
cp -r "$VS_INSTALL_DIR/${VC_SUBDIR}/lib/x86" $DEVKIT_ROOT/VC/lib/ |
|
98 |
cp -r "$VS_INSTALL_DIR/${VC_SUBDIR}/include" $DEVKIT_ROOT/VC/ |
|
31124 | 99 |
mkdir -p $DEVKIT_ROOT/VC/atlmfc/lib |
48678 | 100 |
cp -r "$VS_INSTALL_DIR/${VC_SUBDIR}/atlmfc/lib/x64" $DEVKIT_ROOT/VC/atlmfc/lib/ |
101 |
cp -r "$VS_INSTALL_DIR/${VC_SUBDIR}/atlmfc/lib/x86" $DEVKIT_ROOT/VC/atlmfc/lib/ |
|
102 |
cp -r "$VS_INSTALL_DIR/${VC_SUBDIR}/atlmfc/include" $DEVKIT_ROOT/VC/atlmfc/ |
|
103 |
mkdir -p $DEVKIT_ROOT/VC/Auxiliary |
|
104 |
cp -r "$VS_INSTALL_DIR/VC/Auxiliary/Build" $DEVKIT_ROOT/VC/Auxiliary/ |
|
31124 | 105 |
mkdir -p $DEVKIT_ROOT/VC/redist |
48678 | 106 |
cp -r "$VS_INSTALL_DIR/$REDIST_SUBDIR/x64" $DEVKIT_ROOT/VC/redist/ |
107 |
cp -r "$VS_INSTALL_DIR/$REDIST_SUBDIR/x86" $DEVKIT_ROOT/VC/redist/ |
|
108 |
||
31124 | 109 |
# The redist runtime libs are needed to run the compiler but may not be |
110 |
# installed on the machine where the devkit will be used. |
|
50295
84256425a4e9
8203932: Windows devkit has wrong dlls in 32 bit tools dir
erikj
parents:
50073
diff
changeset
|
111 |
cp $DEVKIT_ROOT/VC/redist/x86/$MSVCR_DLL $DEVKIT_ROOT/VC/bin/x86 |
84256425a4e9
8203932: Windows devkit has wrong dlls in 32 bit tools dir
erikj
parents:
50073
diff
changeset
|
112 |
cp $DEVKIT_ROOT/VC/redist/x86/$MSVCP_DLL $DEVKIT_ROOT/VC/bin/x86 |
48678 | 113 |
cp $DEVKIT_ROOT/VC/redist/x64/$MSVCR_DLL $DEVKIT_ROOT/VC/bin/x64 |
114 |
cp $DEVKIT_ROOT/VC/redist/x64/$MSVCP_DLL $DEVKIT_ROOT/VC/bin/x64 |
|
31124 | 115 |
fi |
116 |
||
117 |
################################################################################ |
|
118 |
# Copy SDK files |
|
119 |
||
120 |
SDK_INSTALL_DIR="$(cygpath "$PROGRAMFILES_X86/Windows Kits/$SDK_VERSION")" |
|
121 |
echo "SDK_INSTALL_DIR: $SDK_INSTALL_DIR" |
|
122 |
||
123 |
if [ ! -d $DEVKIT_ROOT/$SDK_VERSION ]; then |
|
124 |
echo "Copying SDK..." |
|
125 |
mkdir -p $DEVKIT_ROOT/$SDK_VERSION/bin |
|
48678 | 126 |
cp -r "$SDK_INSTALL_DIR/bin/$SDK_FULL_VERSION/x64" $DEVKIT_ROOT/$SDK_VERSION/bin/ |
127 |
cp -r "$SDK_INSTALL_DIR/bin/$SDK_FULL_VERSION/x86" $DEVKIT_ROOT/$SDK_VERSION/bin/ |
|
31124 | 128 |
mkdir -p $DEVKIT_ROOT/$SDK_VERSION/lib |
48678 | 129 |
cp -r "$SDK_INSTALL_DIR/lib/$SDK_FULL_VERSION/um/x64" $DEVKIT_ROOT/$SDK_VERSION/lib/ |
130 |
cp -r "$SDK_INSTALL_DIR/lib/$SDK_FULL_VERSION/um/x86" $DEVKIT_ROOT/$SDK_VERSION/lib/ |
|
131 |
cp -r "$SDK_INSTALL_DIR/lib/$SDK_FULL_VERSION/ucrt/x64" $DEVKIT_ROOT/$SDK_VERSION/lib/ |
|
132 |
cp -r "$SDK_INSTALL_DIR/lib/$SDK_FULL_VERSION/ucrt/x86" $DEVKIT_ROOT/$SDK_VERSION/lib/ |
|
50073
35b22ca681d1
8202557: OpenJDK fails to start in Windows 7 and 8.1 after upgrading compiler to VC 2017
erikj
parents:
48678
diff
changeset
|
133 |
mkdir -p $DEVKIT_ROOT/$SDK_VERSION/Redist |
35b22ca681d1
8202557: OpenJDK fails to start in Windows 7 and 8.1 after upgrading compiler to VC 2017
erikj
parents:
48678
diff
changeset
|
134 |
cp -r "$SDK_INSTALL_DIR/Redist/ucrt" $DEVKIT_ROOT/$SDK_VERSION/Redist/ |
48678 | 135 |
mkdir -p $DEVKIT_ROOT/$SDK_VERSION/include |
136 |
cp -r "$SDK_INSTALL_DIR/include/$SDK_FULL_VERSION/"* $DEVKIT_ROOT/$SDK_VERSION/include/ |
|
31124 | 137 |
fi |
138 |
||
139 |
################################################################################ |
|
140 |
# Generate devkit.info |
|
141 |
||
142 |
echo-info() { |
|
143 |
echo "$1" >> $DEVKIT_ROOT/devkit.info |
|
144 |
} |
|
145 |
||
146 |
echo "Generating devkit.info..." |
|
147 |
rm -f $DEVKIT_ROOT/devkit.info |
|
148 |
echo-info "# This file describes to configure how to interpret the contents of this devkit" |
|
33029
06a8c5e5959b
8139735: Switch compilers in JPRT for windows and linux
erikj
parents:
31124
diff
changeset
|
149 |
echo-info "DEVKIT_NAME=\"Microsoft Visual Studio $VS_VERSION $VS_VERSION_SP (devkit)\"" |
31124 | 150 |
echo-info "DEVKIT_VS_VERSION=\"$VS_VERSION\"" |
151 |
echo-info "" |
|
48678 | 152 |
echo-info "DEVKIT_TOOLCHAIN_PATH_x86=\"\$DEVKIT_ROOT/VC/bin/x86:\$DEVKIT_ROOT/$SDK_VERSION/bin/x86\"" |
153 |
echo-info "DEVKIT_VS_INCLUDE_x86=\"\$DEVKIT_ROOT/VC/include;\$DEVKIT_ROOT/VC/atlmfc/include;\$DEVKIT_ROOT/$SDK_VERSION/include/shared;\$DEVKIT_ROOT/$SDK_VERSION/include/ucrt;\$DEVKIT_ROOT/$SDK_VERSION/include/um;\$DEVKIT_ROOT/$SDK_VERSION/include/winrt\"" |
|
154 |
echo-info "DEVKIT_VS_LIB_x86=\"\$DEVKIT_ROOT/VC/lib/x86;\$DEVKIT_ROOT/VC/atlmfc/lib/x86;\$DEVKIT_ROOT/$SDK_VERSION/lib/x86\"" |
|
31124 | 155 |
echo-info "DEVKIT_MSVCR_DLL_x86=\"\$DEVKIT_ROOT/VC/redist/x86/$MSVCR_DLL\"" |
156 |
echo-info "DEVKIT_MSVCP_DLL_x86=\"\$DEVKIT_ROOT/VC/redist/x86/$MSVCP_DLL\"" |
|
50073
35b22ca681d1
8202557: OpenJDK fails to start in Windows 7 and 8.1 after upgrading compiler to VC 2017
erikj
parents:
48678
diff
changeset
|
157 |
echo-info "DEVKIT_UCRT_DLL_DIR_x86=\"\$DEVKIT_ROOT/10/Redist/ucrt/DLLs/x86\"" |
31124 | 158 |
echo-info "" |
48678 | 159 |
echo-info "DEVKIT_TOOLCHAIN_PATH_x86_64=\"\$DEVKIT_ROOT/VC/bin/x64:\$DEVKIT_ROOT/$SDK_VERSION/bin/x64:\$DEVKIT_ROOT/$SDK_VERSION/bin/x86\"" |
160 |
echo-info "DEVKIT_VS_INCLUDE_x86_64=\"\$DEVKIT_ROOT/VC/include;\$DEVKIT_ROOT/VC/atlmfc/include;\$DEVKIT_ROOT/$SDK_VERSION/include/shared;\$DEVKIT_ROOT/$SDK_VERSION/include/ucrt;\$DEVKIT_ROOT/$SDK_VERSION/include/um;\$DEVKIT_ROOT/$SDK_VERSION/include/winrt\"" |
|
161 |
echo-info "DEVKIT_VS_LIB_x86_64=\"\$DEVKIT_ROOT/VC/lib/x64;\$DEVKIT_ROOT/VC/atlmfc/lib/x64;\$DEVKIT_ROOT/$SDK_VERSION/lib/x64\"" |
|
31124 | 162 |
echo-info "DEVKIT_MSVCR_DLL_x86_64=\"\$DEVKIT_ROOT/VC/redist/x64/$MSVCR_DLL\"" |
163 |
echo-info "DEVKIT_MSVCP_DLL_x86_64=\"\$DEVKIT_ROOT/VC/redist/x64/$MSVCP_DLL\"" |
|
50073
35b22ca681d1
8202557: OpenJDK fails to start in Windows 7 and 8.1 after upgrading compiler to VC 2017
erikj
parents:
48678
diff
changeset
|
164 |
echo-info "DEVKIT_UCRT_DLL_DIR_x86_64=\"\$DEVKIT_ROOT/10/Redist/ucrt/DLLs/x64\"" |
31124 | 165 |
|
166 |
################################################################################ |
|
167 |
# Copy this script |
|
168 |
||
169 |
echo "Copying this script..." |
|
170 |
cp $0 $DEVKIT_ROOT/ |
|
171 |
||
172 |
################################################################################ |
|
173 |
# Create bundle |
|
174 |
||
175 |
echo "Creating bundle: $DEVKIT_BUNDLE" |
|
176 |
(cd "$DEVKIT_ROOT" && tar zcf "$DEVKIT_BUNDLE" .) |