This repository was archived by the owner on Jan 23, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -186,13 +186,13 @@ void PrintUsageHelper()
186186#ifdef FEATURE_CORECLR
187187 W (" Size on Disk Parameters\n " )
188188 W (" /NoMetaData - Do not copy metadata and IL into native image.\n " )
189+ #endif // FEATURE_CORECLR
189190#ifndef NO_NGENPDB
190191 W (" Debugging Parameters\n " )
191192 W (" /CreatePDB <Dir to store PDB> [/lines [<search path for managed PDB>] ]\n " )
192193 W (" When specifying /CreatePDB, the native image should be created\n " )
193194 W (" first, and <assembly name> should be the path to the NI." )
194195#endif // NO_NGENPDB
195- #endif // FEATURE_CORECLR
196196 );
197197}
198198
@@ -665,7 +665,7 @@ int _cdecl wmain(int argc, __in_ecount(argc) WCHAR **argv)
665665 argc--;
666666 }
667667#endif // FEATURE_COMINTEROP
668- #if defined(FEATURE_CORECLR) && !defined( NO_NGENPDB)
668+ #ifndef NO_NGENPDB
669669 else if (MatchParameter (*argv, W (" CreatePDB" )) && (argc > 1 ))
670670 {
671671 // syntax: /CreatePDB <directory to store PDB> [/lines [<search path for managed PDB>] ]
@@ -737,7 +737,7 @@ int _cdecl wmain(int argc, __in_ecount(argc) WCHAR **argv)
737737 argv--;
738738 argc++;
739739 }
740- #endif // FEATURE_CORECLR && !NO_NGENPDB
740+ #endif // !NO_NGENPDB
741741 else
742742 {
743743 if (argc == 1 )
You can’t perform that action at this time.
0 commit comments