Title: [222272] trunk/Tools
- Revision
- 222272
- Author
- [email protected]
- Date
- 2017-09-20 11:04:44 -0700 (Wed, 20 Sep 2017)
Log Message
[Win] Cygwin 64-bit EWS process cannot find Visual Studio installation.
https://bugs.webkit.org/show_bug.cgi?id=177244
Reviewed by Alex Christensen.
The 64-bit EWS shell process should try to find Visual Studio in the 32-bit program files folder.
* EWSTools/start-queue-win.sh:
Modified Paths
Diff
Modified: trunk/Tools/ChangeLog (222271 => 222272)
--- trunk/Tools/ChangeLog 2017-09-20 17:55:27 UTC (rev 222271)
+++ trunk/Tools/ChangeLog 2017-09-20 18:04:44 UTC (rev 222272)
@@ -1,3 +1,14 @@
+2017-09-20 Per Arne Vollan <[email protected]>
+
+ [Win] Cygwin 64-bit EWS process cannot find Visual Studio installation.
+ https://bugs.webkit.org/show_bug.cgi?id=177244
+
+ Reviewed by Alex Christensen.
+
+ The 64-bit EWS shell process should try to find Visual Studio in the 32-bit program files folder.
+
+ * EWSTools/start-queue-win.sh:
+
2017-09-20 Myles C. Maxfield <[email protected]>
Create vector swizzle operators in WSL's standard library
Modified: trunk/Tools/EWSTools/start-queue-win.sh (222271 => 222272)
--- trunk/Tools/EWSTools/start-queue-win.sh 2017-09-20 17:55:27 UTC (rev 222271)
+++ trunk/Tools/EWSTools/start-queue-win.sh 2017-09-20 18:04:44 UTC (rev 222272)
@@ -12,7 +12,7 @@
{
trap 'error_handler ${LINENO} $?' ERR
- "$PROGRAMFILES/Microsoft Visual Studio 14.0/VC/vcvarsall.bat"
+ "$PROGRAMFILES(X86)/Microsoft Visual Studio 14.0/VC/vcvarsall.bat"
while :
do
@@ -24,7 +24,7 @@
find ~/win-ews-logs -mtime +7 -exec rm -f {} \;
echo "TASK: Starting up"
cd ~/WebKit
- export VSINSTALLDIR="$PROGRAMFILES\Microsoft Visual Studio 14.0"
+ export VSINSTALLDIR="$PROGRAMFILES(X86)\Microsoft Visual Studio 14.0"
echo "TASK: Cleaning WebKitBuild"
rm -rf WebKitBuild
date
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes