summaryrefslogtreecommitdiff
path: root/src/pal
diff options
context:
space:
mode:
authorJan Vorlicek <janvorli@microsoft.com>2017-10-06 16:35:26 +0200
committerJan Kotas <jkotas@microsoft.com>2017-10-06 07:35:26 -0700
commit8b3230750776043f0e78e5adb60e8130580591a8 (patch)
treed737036b1b4c9079c47cb08c981eefeb8a84cb4d /src/pal
parent9c6e5b689e043beccdb97385727367e5f0277ac1 (diff)
downloadcoreclr-8b3230750776043f0e78e5adb60e8130580591a8.tar.gz
coreclr-8b3230750776043f0e78e5adb60e8130580591a8.tar.bz2
coreclr-8b3230750776043f0e78e5adb60e8130580591a8.zip
Remove explicit dependency on libnuma (#14359)
Currently, when coreclr is built on machine that has libnuma installed, it adds libnuma to its dependencies and so it cannot be used on machines that don't have libnuma installed. But that is not necessary, the dependency was changed to soft dependency - PAL loads it only if it is present and falls back to the non-numa behavior if it is not found. This change removes the hard libnuma dependency.
Diffstat (limited to 'src/pal')
-rw-r--r--src/pal/src/CMakeLists.txt6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/pal/src/CMakeLists.txt b/src/pal/src/CMakeLists.txt
index 370866ca9e..3bfc348c13 100644
--- a/src/pal/src/CMakeLists.txt
+++ b/src/pal/src/CMakeLists.txt
@@ -372,12 +372,6 @@ if(CMAKE_SYSTEM_NAME STREQUAL NetBSD)
)
endif(CMAKE_SYSTEM_NAME STREQUAL NetBSD)
-if(HAVE_NUMA_H)
- target_link_libraries(coreclrpal
- numa
- )
-endif(HAVE_NUMA_H)
-
add_subdirectory(examples)
if(FEATURE_EVENT_TRACE)