summaryrefslogtreecommitdiff
path: root/src/dlls/mscordbi
diff options
context:
space:
mode:
authorEugene Zemtsov <Eugene.Zemtsov@microsoft.com>2015-03-26 12:12:12 -0700
committerEugene Zemtsov <Eugene.Zemtsov@microsoft.com>2015-03-26 12:12:12 -0700
commit1534d71ef74e468fda52ef313cf800148427f613 (patch)
treed7f3699df31797313ce784cb927e5551f38925dc /src/dlls/mscordbi
parent8a7814030b140d48c0cd5306a47ba8c51d157ea3 (diff)
downloadcoreclr-1534d71ef74e468fda52ef313cf800148427f613.tar.gz
coreclr-1534d71ef74e468fda52ef313cf800148427f613.tar.bz2
coreclr-1534d71ef74e468fda52ef313cf800148427f613.zip
Make DBI and SOS use PAL from DAC
Diffstat (limited to 'src/dlls/mscordbi')
-rw-r--r--src/dlls/mscordbi/CMakeLists.txt5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/dlls/mscordbi/CMakeLists.txt b/src/dlls/mscordbi/CMakeLists.txt
index d2fca5f943..0e90b16211 100644
--- a/src/dlls/mscordbi/CMakeLists.txt
+++ b/src/dlls/mscordbi/CMakeLists.txt
@@ -57,8 +57,7 @@ if(WIN32)
elseif(CLR_CMAKE_PLATFORM_UNIX)
list(APPEND COREDBI_LIBRARIES
mdhotdata_full
- palrt
- CoreClrPal
+ mscordaccore
)
# COREDBI_LIBRARIES is mentioned twice because ld is one pass linker and will not find symbols
@@ -69,6 +68,8 @@ elseif(CLR_CMAKE_PLATFORM_UNIX)
# This option is necessary to ensure that the overloaded new/delete operators defined inside
# of the utilcode will be used instead of the standard library delete operator.
set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -Xlinker -Bsymbolic-functions")
+
+ add_dependencies(mscordbi mscordaccore)
endif(WIN32)