From: Johan Lorensson Date: Tue, 11 Jul 2017 13:21:04 +0000 (+0200) Subject: Remove partial path for ml.exe and ml64.exe in mono VS runtime builds. (#5195) X-Git-Url: http://wien.tomnetworks.com/gitweb/?p=mono.git;a=commitdiff_plain;h=665d8d414169ff90aef2768a0949e9cae47fd886 Remove partial path for ml.exe and ml64.exe in mono VS runtime builds. (#5195) Location of ml.exe and ml64.exe is different in VS2017 compared to VS2015. By removing the partial path from the command, the VS environment will locate the tool depending on selected build configuration and VS version. This should work for both VS2015 and VS2017. --- diff --git a/msvc/masm.fixed.props b/msvc/masm.fixed.props index 8088a22fba0..5c41659bb5d 100644 --- a/msvc/masm.fixed.props +++ b/msvc/masm.fixed.props @@ -15,8 +15,8 @@ 0 0 0 - "$(VCInstallDir)bin\ml.exe" /c [AllOptions] [AdditionalOptions] /Ta[Inputs] - "$(VCInstallDir)bin\amd64\ml64.exe" /c [AllOptions] [AdditionalOptions] /Ta[Inputs] + "ml.exe" /c [AllOptions] [AdditionalOptions] /Ta[Inputs] + "ml64.exe" /c [AllOptions] [AdditionalOptions] /Ta[Inputs] echo MASM not supported on this platform Assembling %(Identity)...