summaryrefslogtreecommitdiff
path: root/Documentation
diff options
context:
space:
mode:
authorJohn Chen <jochen@microsoft.com>2016-03-30 22:35:03 -0700
committerJohn Chen <jochen@microsoft.com>2016-03-30 22:35:03 -0700
commit79d8f0478049271c370c2b2feb99df4b466717d8 (patch)
tree77a2ca7b6d8cc0ab38b2fb71d2f9c8e203004805 /Documentation
parent99329c67db66a4def852a681c240569553026e19 (diff)
downloadcoreclr-79d8f0478049271c370c2b2feb99df4b466717d8.tar.gz
coreclr-79d8f0478049271c370c2b2feb99df4b466717d8.tar.bz2
coreclr-79d8f0478049271c370c2b2feb99df4b466717d8.zip
Fix CrossGen documentation error
Diffstat (limited to 'Documentation')
-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
-------------------