From 2f306af9ea8db087ee10648d1976b38842a50b4f Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sat, 21 Feb 2026 14:05:45 +0000 Subject: [PATCH 1/2] Initial plan From 7bc51b9bd71ce4d2af4d70b023da262e65c879ab Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sat, 21 Feb 2026 14:08:18 +0000 Subject: [PATCH 2/2] Fix macOS build: add MacMSRDriver include path for numa_to_socket_example Co-authored-by: rdementi <25432609+rdementi@users.noreply.github.com> --- examples/CMakeLists.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/examples/CMakeLists.txt b/examples/CMakeLists.txt index 3b109b24..23cd62ba 100644 --- a/examples/CMakeLists.txt +++ b/examples/CMakeLists.txt @@ -24,5 +24,8 @@ if(UNIX) # numa_to_socket_example add_executable(numa_to_socket_example numa_to_socket_example.cpp) + if(APPLE) + target_include_directories(numa_to_socket_example PRIVATE "${CMAKE_SOURCE_DIR}/src/MacMSRDriver") + endif() target_link_libraries(numa_to_socket_example PUBLIC PCM_SHARED PRIVATE Threads::Threads) endif(UNIX) \ No newline at end of file