Skip to content
This repository was archived by the owner on Jan 23, 2023. It is now read-only.

Merge changes from TFS #957

Merged
merged 1 commit into from
May 7, 2015
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/tools/crossgen/crossgen.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -186,13 +186,13 @@ void PrintUsageHelper()
#ifdef FEATURE_CORECLR
W(" Size on Disk Parameters\n")
W(" /NoMetaData - Do not copy metadata and IL into native image.\n")
#endif // FEATURE_CORECLR
#ifndef NO_NGENPDB
W(" Debugging Parameters\n")
W(" /CreatePDB <Dir to store PDB> [/lines [<search path for managed PDB>] ]\n")
W(" When specifying /CreatePDB, the native image should be created\n")
W(" first, and <assembly name> should be the path to the NI.")
#endif // NO_NGENPDB
#endif // FEATURE_CORECLR
);
}

Expand Down Expand Up @@ -665,7 +665,7 @@ int _cdecl wmain(int argc, __in_ecount(argc) WCHAR **argv)
argc--;
}
#endif // FEATURE_COMINTEROP
#if defined(FEATURE_CORECLR) && !defined(NO_NGENPDB)
#ifndef NO_NGENPDB
else if (MatchParameter(*argv, W("CreatePDB")) && (argc > 1))
{
// syntax: /CreatePDB <directory to store PDB> [/lines [<search path for managed PDB>] ]
Expand Down Expand Up @@ -737,7 +737,7 @@ int _cdecl wmain(int argc, __in_ecount(argc) WCHAR **argv)
argv--;
argc++;
}
#endif // FEATURE_CORECLR && !NO_NGENPDB
#endif // !NO_NGENPDB
else
{
if (argc == 1)
Expand Down