summaryrefslogtreecommitdiff
path: root/src/coreclr/hosts
diff options
context:
space:
mode:
authorMarqin <marqin.pl+git@gmail.com>2015-12-15 01:48:58 +0100
committerMarqin <marqin.pl+git@gmail.com>2015-12-15 01:48:58 +0100
commite9ffff6a864043f69fc4d84f284c7bd64008b4ba (patch)
tree9f955416acf2fb04584c2f96b75a0b27931a5e77 /src/coreclr/hosts
parenta739dd64b221ebbd1d49ad0a65f7a8be2c919188 (diff)
downloadcoreclr-e9ffff6a864043f69fc4d84f284c7bd64008b4ba.tar.gz
coreclr-e9ffff6a864043f69fc4d84f284c7bd64008b4ba.tar.bz2
coreclr-e9ffff6a864043f69fc4d84f284c7bd64008b4ba.zip
Link unixcoreruncommon with dl, which is needed on Unix-like systems
to use dynamic linking.
Diffstat (limited to 'src/coreclr/hosts')
-rw-r--r--src/coreclr/hosts/unixcoreruncommon/CMakeLists.txt1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/coreclr/hosts/unixcoreruncommon/CMakeLists.txt b/src/coreclr/hosts/unixcoreruncommon/CMakeLists.txt
index 2b5831e6d9..cecfd77f82 100644
--- a/src/coreclr/hosts/unixcoreruncommon/CMakeLists.txt
+++ b/src/coreclr/hosts/unixcoreruncommon/CMakeLists.txt
@@ -5,3 +5,4 @@ add_library(unixcoreruncommon
coreruncommon.cpp
)
+target_link_libraries(unixcoreruncommon dl)