summaryrefslogtreecommitdiff
path: root/src/dlls/mscordbi
diff options
context:
space:
mode:
authorMike McLaughlin <mikem@microsoft.com>2016-04-11 15:37:42 -0700
committerMike McLaughlin <mikem@microsoft.com>2016-04-11 17:03:24 -0700
commitb7fa022f6cbe28737b6a0e3dfa74e2b80f71ac50 (patch)
tree3d54dad901317de8e64ed662141d67598f56548a /src/dlls/mscordbi
parent65fcbb4eb9e9ed349dac74991bcb7303adeee013 (diff)
downloadcoreclr-b7fa022f6cbe28737b6a0e3dfa74e2b80f71ac50.tar.gz
coreclr-b7fa022f6cbe28737b6a0e3dfa74e2b80f71ac50.tar.bz2
coreclr-b7fa022f6cbe28737b6a0e3dfa74e2b80f71ac50.zip
Unable to debug coreclr apps on Debian 8.2 (Issue #4263)
Add set(CMAKE_BUILD_WITH_INSTALL_RPATH TRUE) to dbi and sos cmake files.
Diffstat (limited to 'src/dlls/mscordbi')
-rw-r--r--src/dlls/mscordbi/CMakeLists.txt1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/dlls/mscordbi/CMakeLists.txt b/src/dlls/mscordbi/CMakeLists.txt
index 2748bdf4a2..b8dfa71ca6 100644
--- a/src/dlls/mscordbi/CMakeLists.txt
+++ b/src/dlls/mscordbi/CMakeLists.txt
@@ -2,6 +2,7 @@
# Set the RPATH of mscordbi so that it can find dependencies without needing to set LD_LIBRARY_PATH
# For more information: http://www.cmake.org/Wiki/CMake_RPATH_handling.
if(CORECLR_SET_RPATH)
+ set(CMAKE_BUILD_WITH_INSTALL_RPATH TRUE)
if(CLR_CMAKE_PLATFORM_DARWIN)
set(CMAKE_INSTALL_RPATH "@loader_path")
else()