Le 27/04/2014 21:18, Richard Sharpe a écrit :
> On Sun, Apr 27, 2014 at 11:11 AM, Pascal Quantin
> <pascal.quantin@xxxxxxxxx> wrote:
>> Le 27/04/2014 20:02, Richard Sharpe a écrit :
>>> Hi folks,
>>>
>>> It seems like I need to set the MSVC_VARIANT to MSVC2010 as the first
>>> invocation of the compiler complains:
>>>
>>> "_MSC_VER is:1600 but required is:1800"
>>>
>>> This is after I set MSVC_VARIANT to MSVC2013
>> Hi,
>>
>> looks like you are still using vcvarsall.bat coming from MSVC2010
>> (_MSC_VER is defined by the compiler).
> Well, this is what I have before anything else:
>
> call "c:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\vcvarsall.bat"
>
> and this is what happens in the x64 path:
>
> :x64
> echo Adding things to the path...
> set PATH=%PATH%;c:\cygwin64\bin
> set WIRESHARK_TARGET_PLATFORM=win64
> call "c:\Program Files\Microsoft SDKs\Windows\v7.1\Bin\SetEnv.Cmd"
> /Release /x64
> title Command Prompt (VC++ 2013 x64)
> goto :eof
>
> And I did download and install Visual Studio Professional 2013.
>
> However, it seems that I have these three directories and they were
> created/updated by the install:
>
> 04/27/2014 10:42 AM <DIR> Microsoft Visual Studio 10.0
> 04/27/2014 08:19 AM <DIR> Microsoft Visual Studio 11.0
> 04/27/2014 10:55 AM <DIR> Microsoft Visual Studio 12.0
If I'm not mistaken the SDK 7.1 contains the MSVC2010 compilers, not the
MSVC2013 ones.
Pascal.