Skip to content

Commit a9a730c

Browse files
committed
Fix DBI loading problem on Linux
Part of PR dotnet#81573 needed to be undone to build libmscordbi.so without any undefined symbols from the DAC. The DAC_PAL_RegisterModule, etc. stubs I recommended didn't work and DBI could not be loaded by SOS because of missing exports. The double pass at the libraries from the `target_link_libraries(mscordbi ${COREDBI_LIBRARIES} ${COREDBI_LIBRARIES})` cmake file needed to be restored. The stubs were not needed after that.
1 parent 1a321fd commit a9a730c

File tree

2 files changed

+4
-16
lines changed

2 files changed

+4
-16
lines changed

src/coreclr/dlls/mscordbi/CMakeLists.txt

+4-1
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,10 @@ elseif(CLR_CMAKE_HOST_UNIX)
100100
mscordaccore
101101
)
102102

103-
target_link_libraries(mscordbi ${COREDBI_LIBRARIES})
103+
# COREDBI_LIBRARIES is mentioned twice because ld is one pass linker and will not find symbols
104+
# if they are defined after they are used. Having all libs twice makes sure that ld will actually
105+
# find all symbols.
106+
target_link_libraries(mscordbi ${COREDBI_LIBRARIES} ${COREDBI_LIBRARIES})
104107

105108
add_dependencies(mscordbi mscordaccore)
106109

src/coreclr/dlls/mscordbi/mscordbi.cpp

-15
Original file line numberDiff line numberDiff line change
@@ -32,18 +32,3 @@ BOOL WINAPI DllMain(HINSTANCE hInstance, DWORD dwReason, LPVOID lpReserved)
3232
// Defer to the main debugging code.
3333
return DbgDllMain(hInstance, dwReason, lpReserved);
3434
}
35-
36-
#if defined(TARGET_LINUX) && !defined(HOST_WINDOWS)
37-
PALIMPORT HINSTANCE PALAPI DAC_PAL_RegisterModule(IN LPCSTR lpLibFileName);
38-
PALIMPORT VOID PALAPI DAC_PAL_UnregisterModule(IN HINSTANCE hInstance);
39-
40-
HINSTANCE PALAPI PAL_RegisterModule(IN LPCSTR lpLibFileName)
41-
{
42-
return DAC_PAL_RegisterModule(lpLibFileName);
43-
}
44-
45-
VOID PALAPI PAL_UnregisterModule(IN HINSTANCE hInstance)
46-
{
47-
DAC_PAL_UnregisterModule(hInstance);
48-
}
49-
#endif

0 commit comments

Comments
 (0)