summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Kotas <jkotas@microsoft.com>2016-03-30 23:28:38 -0700
committerJan Kotas <jkotas@microsoft.com>2016-03-30 23:28:38 -0700
commit255c421c4a21e2f603c49d8233bfb77c7bb1cbdc (patch)
treebdddb46dcd508ec726acc8b604bc904180a25bd7
parent2d67d180baf9b8a5cbcb10dd49dd02e38bd684d8 (diff)
parent79d8f0478049271c370c2b2feb99df4b466717d8 (diff)
downloadcoreclr-255c421c4a21e2f603c49d8233bfb77c7bb1cbdc.tar.gz
coreclr-255c421c4a21e2f603c49d8233bfb77c7bb1cbdc.tar.bz2
coreclr-255c421c4a21e2f603c49d8233bfb77c7bb1cbdc.zip
Merge pull request #4020 from JohnChen0/master
Fix CrossGen documentation error
-rw-r--r--Documentation/building/crossgen.md5
1 files changed, 3 insertions, 2 deletions
diff --git a/Documentation/building/crossgen.md b/Documentation/building/crossgen.md
index 3ee458263a..0b47a25508 100644
--- a/Documentation/building/crossgen.md
+++ b/Documentation/building/crossgen.md
@@ -42,11 +42,12 @@ Then, run one of the following two commands (first command for Windows, second c
To create native images for other assemblies, the command line is slightly more complex:
.\crossgen.exe /Platform_Assemblies_Paths "path1;path2;..." assemblyName.dll
- ./crossgen /Platform_Assemblies_Paths "path1;path2;..." assemblyName.dll
+ ./crossgen /Platform_Assemblies_Paths "path1:path2:..." assemblyName.dll
The /Platform_Assemblies_Paths is used to specify the location of all the dependencies of the input assembly.
You should use full paths for this locations. Relative paths do not always work.
-If there are multiple paths, separate them with semicolons (`;`). On non-Windows platforms, be sure to enclose the path list in quotes to protect the semicolons from the shell.
+If there are multiple paths, separate them with semicolons (`;`) on Windows, or colons (`:`) on non-Windows platforms.
+It is generally a good idea to enclose the path list in quotes to protect any special characters from the shell.
Using native images
-------------------