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:
authorJonghyun Park <parjong@gmail.com>2017-04-24 13:20:38 +0300
committerJan Vorlicek <janvorli@microsoft.com>2017-04-24 13:20:38 +0300
commit9957270cefa53528710e7d005b12910cdb997177 (patch)
tree8fdf2a39a1833c572580d232d5a34d39cd8c2e93 /src/coreclr/clrfeatures.cmake
parent0b9788e2721a2ad3bfee38b2655a76ecc35f05dd (diff)
Support FEATURE_DBGIPC override (dotnet/coreclr#11164)
Commit migrated from https://github.com/dotnet/coreclr/commit/6899c2ae00414267f3d6c2029b7897d7374d46e1
Diffstat (limited to 'src/coreclr/clrfeatures.cmake')
-rw-r--r--src/coreclr/clrfeatures.cmake6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/coreclr/clrfeatures.cmake b/src/coreclr/clrfeatures.cmake
index 0cbd585bb11..f7c7c4a2db4 100644
--- a/src/coreclr/clrfeatures.cmake
+++ b/src/coreclr/clrfeatures.cmake
@@ -15,3 +15,9 @@ if(NOT DEFINED FEATURE_EVENT_TRACE)
endif()
endif(CLR_CMAKE_PLATFORM_LINUX)
endif(NOT DEFINED FEATURE_EVENT_TRACE)
+
+if(NOT DEFINED FEATURE_DBGIPC)
+ if(CLR_CMAKE_PLATFORM_UNIX AND (NOT CLR_CMAKE_PLATFORM_ANDROID))
+ set(FEATURE_DBGIPC 1)
+ endif(CLR_CMAKE_PLATFORM_UNIX)
+endif(NOT DEFINED FEATURE_DBGIPC)