diff --git a/src/dlls/mscordac/mscordac_unixexports.src b/src/dlls/mscordac/mscordac_unixexports.src index 3709d5535644..17d9c0bfb93e 100644 --- a/src/dlls/mscordac/mscordac_unixexports.src +++ b/src/dlls/mscordac/mscordac_unixexports.src @@ -112,6 +112,7 @@ nativeStringResourceTable_mscorrc_debug #GetCurrentDirectoryW #GetCurrentProcess #GetCurrentProcessId +#GetCurrentProcessorNumberEx #GetCurrentThreadId #GetEnvironmentVariableA #GetEnvironmentVariableW @@ -119,9 +120,12 @@ nativeStringResourceTable_mscorrc_debug #GetFileAttributesW #GetFileSize #GetFullPathNameW +#GetLogicalProcessorInformationEx #GetLastError #GetLongPathNameW #GetModuleFileNameW +#GetNumaHighestNodeNumber +#GetNumaProcessorNodeEx #GetProcAddress #GetProcessAffinityMask #GetProcessHeap @@ -133,6 +137,7 @@ nativeStringResourceTable_mscorrc_debug #GetTempFileNameW #GetTempPathA #GetTempPathW +#GetThreadGroupAffinity #HeapAlloc #HeapFree #HeapSetInformation @@ -168,6 +173,7 @@ nativeStringResourceTable_mscorrc_debug #SetFilePointer #SetLastError #SetErrorMode +#SetThreadGroupAffinity #Sleep #SleepEx #SwitchToThread @@ -179,6 +185,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)