From d034981c78112c8703d3528e8ef8efdb36d68584 Mon Sep 17 00:00:00 2001 From: John Chen Date: Fri, 9 Dec 2016 09:20:39 -0800 Subject: Fix path separator in CrossGen help on Linux --- src/tools/crossgen/crossgen.cpp | 15 ++++++++------- 1 file 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 - Specifies input filename (optional)\n") W(" /out - Specifies output filename (optional)\n") #ifdef FEATURE_CORECLR - W(" /Trusted_Platform_Assemblies \n") + W(" /Trusted_Platform_Assemblies \n") W(" - List of assemblies treated as trusted platform\n") W(" - Cannot be used with Platform_Assemblies_Paths\n") - W(" /Platform_Resource_Roots \n") + W(" /Platform_Resource_Roots \n") W(" - List of paths containing localized assembly directories\n") - W(" /App_Paths - List of paths containing user-application assemblies and resources\n") + W(" /App_Paths \n") + W(" - List of paths containing user-application assemblies and resources\n") #ifndef NO_NGENPDB - W(" /App_Ni_Paths \n") + W(" /App_Ni_Paths \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 \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 \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 \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 -- cgit v1.2.3