diff --git a/src/dlls/mscordac/mscordac_unixexports.src b/src/dlls/mscordac/mscordac_unixexports.src index 9902cb6bb6cf..fbe7d0090a2b 100644 --- a/src/dlls/mscordac/mscordac_unixexports.src +++ b/src/dlls/mscordac/mscordac_unixexports.src @@ -30,6 +30,8 @@ nativeStringResourceTable_mscorrc_debug #PAL__flushall #PAL_free #PAL_fwprintf +#PAL_GetLogicalCpuCountFromOS +#PAL_GetNumaProcessorNode #PAL_GetPALDirectoryW #PAL_GetResourceString #PAL_get_stdout @@ -122,6 +124,7 @@ nativeStringResourceTable_mscorrc_debug #GetLastError #GetLongPathNameW #GetModuleFileNameW +#GetNumaHighestNodeNumber #GetProcAddress #GetProcessHeap #GetShortPathNameW @@ -178,6 +181,7 @@ nativeStringResourceTable_mscorrc_debug #TlsGetValue #TlsSetValue #VirtualAlloc +#VirtualAllocExNuma #VirtualFree #VirtualProtect #VirtualQuery diff --git a/src/utilcode/staticnohost/CMakeLists.txt b/src/utilcode/staticnohost/CMakeLists.txt index f4b7909f1742..eea4d60785be 100644 --- a/src/utilcode/staticnohost/CMakeLists.txt +++ b/src/utilcode/staticnohost/CMakeLists.txt @@ -9,7 +9,4 @@ add_library_clr(utilcodestaticnohost STATIC ${UTILCODE_STATICNOHOST_SOURCES}) if(CLR_CMAKE_PLATFORM_UNIX) target_link_libraries(utilcodestaticnohost nativeresourcestring) - if(CLR_CMAKE_PLATFORM_DARWIN) - target_link_libraries(utilcodestaticnohost coreclrpal) - endif(CLR_CMAKE_PLATFORM_DARWIN) endif(CLR_CMAKE_PLATFORM_UNIX)