Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corert.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Kotas <jkotas@microsoft.com>2017-04-27 21:38:12 +0300
committerMichal Strehovský <MichalStrehovsky@users.noreply.github.com>2017-04-27 21:38:12 +0300
commit842b84cf206037bd8768e33ea6e6b2c8f764328b (patch)
treec3f74369c9fa68afa8f85f4b2b96c04f49660b60 /Documentation
parentb7bda6e96ab983d1551f0213036918839d9104d7 (diff)
Update docs and repro projects to point to VS2017 by default (#3439)
Diffstat (limited to 'Documentation')
-rw-r--r--Documentation/README.md2
-rw-r--r--Documentation/how-to-build-and-run-ilcompiler-in-console-shell-prompt.md19
-rw-r--r--Documentation/how-to-build-and-run-ilcompiler-in-visual-studio.md (renamed from Documentation/how-to-build-and-run-ilcompiler-in-visual-studio-2015.md)0
3 files changed, 4 insertions, 17 deletions
diff --git a/Documentation/README.md b/Documentation/README.md
index 1f099ff2c..881d7b7f9 100644
--- a/Documentation/README.md
+++ b/Documentation/README.md
@@ -11,7 +11,7 @@ This is the repo for CoreRT, the .NET Core runtime optimized for AOT (Ahead of T
- [Prerequisites for building](prerequisites-for-building.md)
- [How to build and run from the Command Line](how-to-build-and-run-ilcompiler-in-console-shell-prompt.md)
-- [How to build and run from Visual Studio](how-to-build-and-run-ilcompiler-in-visual-studio-2015.md)
+- [How to build and run from Visual Studio](how-to-build-and-run-ilcompiler-in-visual-studio.md)
- [How to build and run from VSCode](how-to-build-and-run-ilcompiler-in-vscode.md)
- [How to run tests](how-to-run-tests.md)
- [Cross Compilation for ARM on Linux](cross-building.md)
diff --git a/Documentation/how-to-build-and-run-ilcompiler-in-console-shell-prompt.md b/Documentation/how-to-build-and-run-ilcompiler-in-console-shell-prompt.md
index 5955c8bcf..2b920384e 100644
--- a/Documentation/how-to-build-and-run-ilcompiler-in-console-shell-prompt.md
+++ b/Documentation/how-to-build-and-run-ilcompiler-in-console-shell-prompt.md
@@ -19,8 +19,8 @@ This will result in the following:
# Install latest CLI tools
* Download latest CLI tools from [https://github.com/dotnet/cli/](https://github.com/dotnet/cli/) and add them to the path. The latest CLI tools include MSBuild support that the native compilation build integration depends on. These instructions have been tested with build `1.0.0-rc4-004812`.
-* On windows ensure you are using the 'VS2015 x64 Native Tools Command Prompt'
- (This is distinct from the 'Developer Command Prompt for VS2015')
+* On windows ensure you are using the 'x64 Native Tools Command Prompt for VS 2017' or 'VS2015 x64 Native Tools Command Prompt'
+ (This is distinct from the 'Developer Command Prompt for VS 2017')
You should now be able to use the `dotnet` commands of the CLI tools.
@@ -89,18 +89,6 @@ If you are seeing errors such as:
- Make sure to use release build, or pass the extra `/p:AdditionalCppCompilerFlags=/MTd` argument above.
-If you are seeing errors such as:
-
-```
- LINK : fatal error LNK1104: cannot open file 'kernel32.lib'
- Linking of intermediate files failed.
-```
-
- - Make sure you run these commands from the 'VS2015 x64 Native Tools Command Prompt' instead of a vanilla command prompt
- - Search for the missing lib files in your SDK, for example under C:\Program Files (x86)\Windows Kits\10\lib. Make sure the path to these libraries is included in the LIB environment variable. It appears VS 2015 RTM developer command prompt does not correctly set the LIB paths for the 10586 Windows SDK. VS 2015 Update 1 resolves that issue, so installing it is another alternative.
-
-For more details see the discussion in issue #606
-
If you are seeing errors such as:
```
@@ -108,7 +96,6 @@ libcpmtd.lib(nothrow.obj) : fatal error LNK1112: module machine type 'X86' confl
C:\Users\[omitted]\nativetest\bin\Product\Windows_NT.x64.Debug\packaging\publish1\Microsoft.NETCore.Native.targets(151,5): error MSB3073: The command "link @"obj\Debug\netcoreapp1.0\native\link.rsp"" exited with code 1112. [C:\Users\[omitted]\nativetest\app\app.csproj]
```
-- Make sure you run these commands from the `VS2015 x64 Native Tools Command Prompt` instead of a vanilla command prompt
-- Try running command `"c:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" x64` to force x64 target
+Make sure you run these commands from the `x64 Native Tools Command Prompt for VS 2017` instead of a vanilla command prompt
For more details see discussion in issue #2679
diff --git a/Documentation/how-to-build-and-run-ilcompiler-in-visual-studio-2015.md b/Documentation/how-to-build-and-run-ilcompiler-in-visual-studio.md
index e5d430f5b..e5d430f5b 100644
--- a/Documentation/how-to-build-and-run-ilcompiler-in-visual-studio-2015.md
+++ b/Documentation/how-to-build-and-run-ilcompiler-in-visual-studio.md