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>2016-02-28 07:49:16 +0300
committerJan Kotas <jkotas@microsoft.com>2016-02-29 00:19:02 +0300
commit2f98e968331c721e9caa21379cbc5f2b6fa7775a (patch)
tree3665edb8dec0132c5632faceee051a7448ac27d7 /Documentation
parent0e3dc52452686fce73a54340cb66bf7d5b89e0c4 (diff)
Workaround for missing debugging symbols for System.Private.* stuff
Diffstat (limited to 'Documentation')
-rw-r--r--Documentation/how-to-build-and-run-ilcompiler-in-visual-studio-2015.md4
1 files changed, 2 insertions, 2 deletions
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-2015.md
index 9161d0767..76f9efd23 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-2015.md
@@ -25,7 +25,7 @@ build.cmd clean
- Set "desktop" project in solution explorer as your startup project
- Set startup command line to:
-`@c:\corert\bin\obj\Windows_NT.x64.Debug\ryujit.rsp`
+`-r:C:\corert\bin\Product\Windows_NT.x64.Debug\System.Private.CoreLib.dll @c:\corert\bin\obj\Windows_NT.x64.Debug\ryujit.rsp`
- Build & run using **F5**
- This will run the compiler. The output is `c:\corert\src\ILCompiler\repro\obj\Debug\dnxcore50\native\repro.obj` file.
@@ -48,7 +48,7 @@ build.cmd clean
- Set "desktop" project in solution explorer as your startup project
- Set startup command line to:
-`@c:\corert\bin\obj\Windows_NT.x64.Debug\cpp.rsp`
+`-r:C:\corert\bin\Product\Windows_NT.x64.Debug\System.Private.CoreLib.dll @c:\corert\bin\obj\Windows_NT.x64.Debug\cpp.rsp`
- `-nolinenumbers` command line option can be used to suppress generation of line number mappings in C++ files - useful for debugging