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:
authorMichal Strehovský <MichalStrehovsky@users.noreply.github.com>2016-03-20 01:01:28 +0300
committerMichal Strehovský <MichalStrehovsky@users.noreply.github.com>2016-03-20 01:01:28 +0300
commit284be20da17c819abdf26fe3ff1f99dcc17c4a2e (patch)
tree360ca23d7bcbd2f41a40930dc79c24ce1030b4d7 /Documentation
parente801589f7612fad6aa17d71363cdd9bdbc7ba071 (diff)
Fix paths in instructions
Native executable is actually dropped in directories like `bin\Debug\dnxcore50\win7-x64\native` on my box. Prefix ilcpath with `repo_root`.
Diffstat (limited to 'Documentation')
-rw-r--r--Documentation/how-to-build-and-run-ilcompiler-in-console-shell-prompt.md6
1 files changed, 3 insertions, 3 deletions
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 2fb68c569..90d98d9fa 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
@@ -40,10 +40,10 @@ From the shell/command prompt, issue the following commands, from the folder con
```
dotnet restore
- dotnet build --native --ilcpath bin\Product\Windows_NT.x64.Debug\.nuget\publish1
+ dotnet build --native --ilcpath <repo_root>\bin\Product\Windows_NT.x64.Debug\.nuget\publish1
```
-Native executable will be dropped in `./bin/[configuration]/[framework]/native/` folder and will have the same name as the folder in which your source file is present.
+Native executable will be dropped in `./bin/[configuration]/[framework]/[runtime]/native/` folder and will have the same name as the folder in which your source file is present.
## Using CPP Code Generator ##
@@ -53,7 +53,7 @@ From the shell/command prompt, issue the following commands to generate the nati
```
dotnet restore
- dotnet build --native --cpp --ilcpath bin\Product\Windows_NT.x64.Debug\.nuget\publish1 --cppcompilerflags /MTd
+ dotnet build --native --cpp --ilcpath <repo_root>\bin\Product\Windows_NT.x64.Debug\.nuget\publish1 --cppcompilerflags /MTd
```
Omit `--cppcompilerflags /MTd` for release CoreRT build.