Skip to content

Latest commit

 

History

History
131 lines (98 loc) · 5.9 KB

windows-instructions.md

File metadata and controls

131 lines (98 loc) · 5.9 KB

Windows Prerequisites

These instructions will lead you through preparing to build the diagnostics repo on Windows.


Environment

You must install several components to build. These instructions were tested on Windows 7+.

Visual Studio

Visual Studio must be installed. Supported versions:

For Visual Studio 2017:

  • When doing a 'Workloads' based install, the following are the minimum requirements:
    • .NET Desktop Development
      • All Required Components
      • .NET Framework 4-4.6 Development Tools
    • Desktop Development with C++
      • All Required Components
      • VC++ 2017 v141 Toolset (x86, x64)
      • Windows 8.1 SDK and UCRT SDK
      • VC++ 2015.3 v140 Toolset (x86, x64)
  • When doing an 'Individual Components' based install, the following are the minimum requirements:
    • Under ".NET":
      • .NET Framework 4.6 targeting pack
      • .NET Portable Library targeting pack
    • Under "Code tools":
      • Static analysis tools
    • Under "Compilers, build tools, and runtimes":
      • C# and Visual Basic Roslyn Compilers
      • MSBuild
      • VC++ 2015.3 v140 toolset (x86, x64)
      • VC++ 2017 v141 toolset (x86, x64)
      • Windows Universal CRT SDK
    • Under "Development activities":
      • Visual Studio C++ core features
    • Under "SDKs, libraries, and frameworks":
      • Windows 10 SDK or Windows 8.1 SDK
  • To build for Arm32, Make sure that you have the Windows 10 SDK installed (or selected to be installed as part of VS installation). To explicitly install Windows SDK, download it from here: Windows SDK for Windows 10.
    • In addition, ensure you install the ARM tools. In the "Individual components" window, in the "Compilers, build tools, and runtimes" section, check the box for "Visual C++ compilers and libraries for ARM".
  • Important: You must have the msdia120.dll COM Library registered in order to build the repository.
    • This binary is registered by default when installing the "VC++ Tools" with Visual Studio 2015
    • You can also manually register the binary by launching the "Developer Command Prompt for VS2017" with Administrative privileges and running regsvr32.exe "%VSINSTALLDIR%\Common7\IDE\msdia120.dll"

Visual Studio Express is not supported.

CMake

This repo build has been validated using CMake 3.9.3.

  • Install CMake for Windows.
  • Add its location (e.g. C:\Program Files (x86)\CMake\bin) to the PATH environment variable.
    The installation script has a check box to do this, but you can do it yourself after the fact following the instructions at Adding to the Default PATH variable

Python

Python is used in the build system. We are currently using python 2.7.9, although any recent (2.4+) version of Python should work, including Python 3.

  • Install Python for Windows.
  • Add its location (e.g. C:\Python*) to the PATH environment variable.
    The installation script has a check box to do this, but you can do it yourself after the fact following the instructions at Adding to the Default PATH variable

Git

For actual user operations, it is often more convenient to use the GIT features built into Visual Studio 2015. However the diagnostics repo use the GIT command line utilities directly so you need to install them for these to work properly. You can get it from

  • Install Git For Windows
  • Add its location (e.g. C:\Program Files\Git\cmd) to the PATH environment variable.
    The installation script has a check box to do this, but you can do it yourself after the fact following the instructions at Adding to the Default PATH variable

PowerShell

PowerShell is used in the build system. Ensure that it is accessible via the PATH environment variable. Typically this is %SYSTEMROOT%\System32\WindowsPowerShell\v1.0.

Powershell version must be 3.0 or higher. This should be the case for Windows 8 and later builds.

  • Windows 7 SP1 can install Powershell version 4 here.

Adding to the default PATH variable

The commands above need to be on your command lookup path. Some installers will automatically add them to the path as part of installation, but if not here is how you can do it.

You can of course add a directory to the PATH environment variable with the syntax

    set PATH=%PATH%;DIRECTORY_TO_ADD_TO_PATH

However the change above will only last until the command windows closes. You can make your change to the PATH variable persistent by going to Control Panel -> System And Security -> System -> Advanced system settings -> Environment Variables, and select the 'Path' variable in the 'System variables' (if you want to change it for all users) or 'User variables' (if you only want to change it for the current user). Simply edit the PATH variable's value and add the directory (with a semicolon separator).

Cross Compilation for ARM on Windows

Building ARM for Windows can be done using cross compilation. Make sure the above requirements for building for arm32 are installed.

C:\diagnostics> build.cmd -architecture arm

Building

To build under Windows, run build.cmd from the root of the repository:

build.cmd

[Lots of build spew]

BUILD: Repo sucessfully built.
BUILD: Product binaries are available at c:\git\diagnostics\artifacts\Debug\bin\Windows_NT.x64

To build for x86:

build.cmd -architecture x86

To test the resulting SOS:

test.cmd