Kaydet (Commit) 97278574 authored tarafından Michael Stahl's avatar Michael Stahl

configure: MSVC 2017 devenv.exe doesn't start properly

... from a DOS style 8.3 path, for whatever reason.  Special case DEVENV
variable so it uses long path.

Change-Id: I03bb20a8f35cd116edd33ec91178f9deddbc4257
üst 10aff290
......@@ -3451,10 +3451,13 @@ if test "$_os" = "WINNT"; then
fi
# Find the version of devenv.exe
DEVENV="$VC_PRODUCT_DIR/../Common7/IDE/devenv.exe"
# MSVC 2017 devenv does not start properly from a DOS 8.3 path
DEVENV=$(cygpath -lm "$VC_PRODUCT_DIR/../Common7/IDE/devenv.exe")
if test ! -e "$DEVENV"; then
AC_MSG_ERROR([No devenv.exe found, Visual Studio installation broken?])
fi
# add quotes around it, this is an ugly hack for convenience
DEVENV=\"${DEVENV}\"
dnl ===========================================================
dnl Check for the corresponding mspdb*.dll
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment