From 3c3596e1b31afd8a5231209d804c77315b3abe1d Mon Sep 17 00:00:00 2001 From: Adam Stark Date: Mon, 26 Mar 2018 13:46:13 -0700 Subject: Only use FEATURE_PERFTRACING and FEATURE_EVENT_TRACE features when turned on (#17232) --- src/vm/corhost.cpp | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/vm') diff --git a/src/vm/corhost.cpp b/src/vm/corhost.cpp index 2b67f19f2b..810c45ffd7 100644 --- a/src/vm/corhost.cpp +++ b/src/vm/corhost.cpp @@ -43,7 +43,9 @@ #endif // !FEATURE_PAL #include "stringarraylist.h" +#ifdef FEATURE_PERFTRACING #include "eventpipe.h" +#endif // FEATURE_PERFTRACING #ifdef FEATURE_COMINTEROP #include "winrttypenameconverter.h" @@ -370,7 +372,9 @@ void SetCommandLineArgs(LPCWSTR pwzAssemblyPath, int argc, LPCWSTR* argv) CONTRACTL_END; // Send the command line to EventPipe. +#ifdef FEATURE_PERFTRACING EventPipe::SaveCommandLine(pwzAssemblyPath, argc, argv); +#endif // FEATURE_PERFTRACING // Send the command line to System.Environment. struct _gc -- cgit v1.2.3