Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dotnet/runtime.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Salem <josalem@microsoft.com>2019-06-04 19:09:59 +0300
committerAndrew Au <andrewau@microsoft.com>2019-06-04 19:09:59 +0300
commit895e8b3e0ad1097748335f8ce63c09d95eec19d5 (patch)
tree916db1c8dfa451e5cf9cdd1889b220ec9ff2d1d7 /src/coreclr/clrfeatures.cmake
parent13bfbddf0f644e3334c709a00859e027abad786e (diff)
Update to AutoTrace (dotnet/coreclr#24936)
* * Add license headers to autotrace.h|cpp * use W() macro for getting correct string literal type * formalize env vars to be COMPlus_* style * add documentation * modify cmake files to have the flag and set default value to 0 * Fix typo Commit migrated from https://github.com/dotnet/coreclr/commit/b3ff5135ecba8d47cca9c02550d04e592b2e2310
Diffstat (limited to 'src/coreclr/clrfeatures.cmake')
-rw-r--r--src/coreclr/clrfeatures.cmake4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/coreclr/clrfeatures.cmake b/src/coreclr/clrfeatures.cmake
index bb4f09f2a3c..03267629716 100644
--- a/src/coreclr/clrfeatures.cmake
+++ b/src/coreclr/clrfeatures.cmake
@@ -23,3 +23,7 @@ endif(NOT DEFINED FEATURE_INTERPRETER)
if(NOT DEFINED FEATURE_STANDALONE_GC)
set(FEATURE_STANDALONE_GC 1)
endif(NOT DEFINED FEATURE_STANDALONE_GC)
+
+if(NOT DEFINED FEATURE_AUTO_TRACE)
+ set(FEATURE_AUTO_TRACE 0)
+endif(NOT DEFINED FEATURE_AUTO_TRACE)