File tree 2 files changed +20
-2
lines changed
2 files changed +20
-2
lines changed Original file line number Diff line number Diff line change
1
+ 2017-09-25 Per Arne Vollan <
[email protected] >
2
+
3
+ [Win] Cygwin 64-bit EWS process cannot find Visual Studio installation.
4
+ https://bugs.webkit.org/show_bug.cgi?id=177244
5
+
6
+ Reviewed by Alex Christensen.
7
+
8
+ The 64-bit EWS shell process should try to find Visual Studio in the 32-bit program files folder.
9
+
10
+ * EWSTools/start-queue-win.sh:
11
+
1
12
2017-09-25 Alex Christensen <
[email protected] >
2
13
3
14
Add WKContentRuleList notify action type
Original file line number Diff line number Diff line change @@ -12,7 +12,14 @@ function start_ews()
12
12
{
13
13
trap ' error_handler ${LINENO} $?' ERR
14
14
15
- " $PROGRAMFILES /Microsoft Visual Studio 14.0/VC/vcvarsall.bat"
15
+ if [[ $PROGRAMFILES =~ " (x86)" ]]
16
+ then
17
+ PROGRAMFILES_X86=$PROGRAMFILES
18
+ else
19
+ PROGRAMFILES_X86=" $PROGRAMFILES (x86)"
20
+ fi
21
+
22
+ " $PROGRAMFILES_X86 /Microsoft Visual Studio 14.0/VC/vcvarsall.bat"
16
23
17
24
while :
18
25
do
@@ -24,7 +31,7 @@ function start_ews()
24
31
find ~ /win-ews-logs -mtime +7 -exec rm -f {} \;
25
32
echo " TASK: Starting up"
26
33
cd ~ /WebKit
27
- export VSINSTALLDIR=" $PROGRAMFILES \Microsoft Visual Studio 14.0"
34
+ export VSINSTALLDIR=" $PROGRAMFILES_X86 \Microsoft Visual Studio 14.0"
28
35
echo " TASK: Cleaning WebKitBuild"
29
36
rm -rf WebKitBuild
30
37
date
You can’t perform that action at this time.
0 commit comments