summaryrefslogtreecommitdiff
path: root/src/dlls/mscordac
diff options
context:
space:
mode:
authorMike McLaughlin <mikem@microsoft.com>2015-02-19 16:52:13 -0800
committerMike McLaughlin <mikem@microsoft.com>2015-02-19 16:52:13 -0800
commitb079d1ac8544684c52177be4e1daf90f9763479c (patch)
tree9c9fadbe787adeca34add789b714aa28321de1b4 /src/dlls/mscordac
parent5b6b16f0854d60c6f01583ca292b6d7cde132b45 (diff)
downloadcoreclr-b079d1ac8544684c52177be4e1daf90f9763479c.tar.gz
coreclr-b079d1ac8544684c52177be4e1daf90f9763479c.tar.bz2
coreclr-b079d1ac8544684c52177be4e1daf90f9763479c.zip
Fixed Windows build for the DAC by restore the lib order back. Add the MAKEDLLNAME macros to properly format the "sos" and "mscoredaccore" library names when loaded. Cleaned up the sos command to only load the sos module once the first time the command is executed. Fixed a g_clrData ref count bug in LoadClrDebugDll.
Diffstat (limited to 'src/dlls/mscordac')
-rw-r--r--src/dlls/mscordac/CMakeLists.txt12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/dlls/mscordac/CMakeLists.txt b/src/dlls/mscordac/CMakeLists.txt
index 10f7161c32..fc0836f528 100644
--- a/src/dlls/mscordac/CMakeLists.txt
+++ b/src/dlls/mscordac/CMakeLists.txt
@@ -47,17 +47,17 @@ add_library(mscordaccore SHARED ${CLR_DAC_SOURCES})
# library.
set(COREDAC_LIBRARIES
${START_LIBRARY_GROUP} # Start group of libraries that have circular references
- utilcode_dac
- cordbee_dac
cee_dac
- mdcompiler_dac
- mdruntime_dac
- mdruntimerw_dac
- mdhotdata_dac
+ cordbee_dac
corguids
daccess
dbgutil
+ mdcompiler_dac
+ mdhotdata_dac
+ mdruntime_dac
+ mdruntimerw_dac
strongname_dac
+ utilcode_dac
unwinder_dac
${END_LIBRARY_GROUP} # End group of libraries that have circular references
)