summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/ToolBox/SOS/Strike/CMakeLists.txt3
-rw-r--r--src/dlls/mscordbi/CMakeLists.txt5
2 files changed, 4 insertions, 4 deletions
diff --git a/src/ToolBox/SOS/Strike/CMakeLists.txt b/src/ToolBox/SOS/Strike/CMakeLists.txt
index 4fd06e435c..c01d810d9a 100644
--- a/src/ToolBox/SOS/Strike/CMakeLists.txt
+++ b/src/ToolBox/SOS/Strike/CMakeLists.txt
@@ -89,8 +89,7 @@ else(WIN32)
set(SOS_LIBRARY
corguids
- CoreClrPal
- palrt
+ mscordaccore
)
endif(WIN32)
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)