We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8f6b899 commit d546de7Copy full SHA for d546de7
src/installer/corehost/cli/common.cmake
@@ -32,6 +32,12 @@ if(CLR_CMAKE_TARGET_WIN32)
32
list(APPEND SOURCES ${HEADERS})
33
endif()
34
35
+# This is required to map a symbol reference to a matching definition local to the module (.so)
36
+# containing the reference instead of using definitions from other modules.
37
+if(CLR_CMAKE_TARGET_LINUX)
38
+ set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -Xlinker -Bsymbolic")
39
+endif()
40
+
41
function(set_common_libs TargetType)
42
43
# Libraries used for exe projects
0 commit comments