summaryrefslogtreecommitdiff
path: root/src/tools/crossgen/crossgen.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/crossgen/crossgen.cpp')
-rw-r--r--src/tools/crossgen/crossgen.cpp15
1 files changed, 8 insertions, 7 deletions
diff --git a/src/tools/crossgen/crossgen.cpp b/src/tools/crossgen/crossgen.cpp
index 960bcf51cd..a3e66e69e2 100644
--- a/src/tools/crossgen/crossgen.cpp
+++ b/src/tools/crossgen/crossgen.cpp
@@ -122,20 +122,21 @@ void PrintUsageHelper()
W(" /in <file> - Specifies input filename (optional)\n")
W(" /out <file> - Specifies output filename (optional)\n")
#ifdef FEATURE_CORECLR
- W(" /Trusted_Platform_Assemblies <path[;path]>\n")
+ W(" /Trusted_Platform_Assemblies <path[") PATH_SEPARATOR_STR_W W("path]>\n")
W(" - List of assemblies treated as trusted platform\n")
W(" - Cannot be used with Platform_Assemblies_Paths\n")
- W(" /Platform_Resource_Roots <path[;path]>\n")
+ W(" /Platform_Resource_Roots <path[") PATH_SEPARATOR_STR_W W("path]>\n")
W(" - List of paths containing localized assembly directories\n")
- W(" /App_Paths <path> - List of paths containing user-application assemblies and resources\n")
+ W(" /App_Paths <path[") PATH_SEPARATOR_STR_W W("path]>\n")
+ W(" - List of paths containing user-application assemblies and resources\n")
#ifndef NO_NGENPDB
- W(" /App_Ni_Paths <path[;path]>\n")
+ W(" /App_Ni_Paths <path[") PATH_SEPARATOR_STR_W W("path]>\n")
W(" - List of paths containing user-application native images\n")
W(" - Must be used with /CreatePDB switch\n")
#endif // NO_NGENPDB
#endif // FEATURE_CORECLR
- W(" /Platform_Assemblies_Paths\n")
+ W(" /Platform_Assemblies_Paths <path[") PATH_SEPARATOR_STR_W W("path]>\n")
W(" - List of paths containing target platform assemblies\n")
#ifdef FEATURE_CORECLR
// If Platform_Assemblies_Paths, we will use it to build the TPA list and thus,
@@ -144,7 +145,7 @@ void PrintUsageHelper()
#endif // FEATURE_CORECLR
#ifdef FEATURE_COMINTEROP
- W(" /Platform_Winmd_Paths\n")
+ W(" /Platform_Winmd_Paths <path[") PATH_SEPARATOR_STR_W W("path]>\n")
W(" - List of paths containing target platform WinMDs used\n")
W(" for emulating RoResolveNamespace\n")
#endif
@@ -156,7 +157,7 @@ void PrintUsageHelper()
W(" scenario traces, which can be used with ibcmerge.exe\n")
#endif
#if defined(FEATURE_CORECLR) && !defined(FEATURE_MERGE_JIT_AND_ENGINE)
- W(" /JITPath\n")
+ W(" /JITPath <path>\n")
W(" - Specifies the absolute file path to JIT compiler to be used.\n")
#endif // defined(FEATURE_CORECLR) && !defined(FEATURE_MERGE_JIT_AND_ENGINE)
#ifdef FEATURE_READYTORUN_COMPILER