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-01-17 20:52:11 +0300
committerGitHub <noreply@github.com>2017-01-17 20:52:11 +0300
commit82464aaa3404fc48ed8f0a5cf6c299c5d135afe9 (patch)
tree7bf2896dbd5526d792181f0463d80b001daf7d86 /Documentation
parent63cc02771ecd502794340b826671b4f90d214b0f (diff)
Fix handling of parametrized types in CppCodeGen (#2517)
- Use NameMangler.GetMangledTypeName directly to get the EEType name - Delete filtering of IsPointer and IsByRef during type emission since it works fine now - Add bigobj compiler switch to allow large auto generated .cpp files Fix #2486
Diffstat (limited to 'Documentation')
-rw-r--r--Documentation/how-to-build-and-run-ilcompiler-in-visual-studio-2015.md2
1 files changed, 1 insertions, 1 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 108027363..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-2015.md
@@ -52,7 +52,7 @@ _Note: The size of NuGet packages is approximately 2.75 GB, so download might ta
- Set startup command line to:
`@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
+ - `--codegenopt:nolinenumbers` command line option can be used to suppress generation of line number mappings in C++ files - useful for debugging
- Build & run using **F5**
- This will run the compiler. The output is `c:\corert\bin\obj\Windows_NT.x64.Debug\repro\native\repro.cpp` file.