Skip to content

Commit 44ddb4a

Browse files
authored
Merge pull request #197 from Alan-Jowett/fix_build_break
Set correct WDK version
2 parents 68e7871 + 433cd88 commit 44ddb4a

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ if (PLATFORM_WINDOWS)
2626
exec_program(${NUGET} ARGS install "eBPF-for-Windows.x64" -ExcludeVersion -OutputDirectory ${PROJECT_BINARY_DIR}/packages -Source ${BPF_PERF_LOCAL_NUGET_PATH} -NoCache)
2727
else()
2828
# Update this once the new version of eBPF-for-Windows is released.
29-
set(EBPF_PACKAGE_NAME "eBPF-for-Windows")
30-
exec_program(${NUGET} ARGS install "eBPF-for-Windows" -Version 0.17.1 -ExcludeVersion -OutputDirectory ${PROJECT_BINARY_DIR}/packages)
29+
set(EBPF_PACKAGE_NAME "eBPF-for-Windows.x64")
30+
exec_program(${NUGET} ARGS install "eBPF-for-Windows.x64" -Version 0.21.1 -ExcludeVersion -OutputDirectory ${PROJECT_BINARY_DIR}/packages)
3131
endif()
3232
endif()
3333
set(EBPF_LIB "ebpfapi")

bpf/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ if (PLATFORM_WINDOWS)
1717
message("ERROR: You must first install nuget.exe from https://www.nuget.org/downloads")
1818
else()
1919
foreach(PACKAGE ${NUGET_PACKAGES})
20-
execute_process(COMMAND ${NUGET} install ${PACKAGE} -OutputDirectory ${PROJECT_BINARY_DIR}/packages)
20+
execute_process(COMMAND ${NUGET} install ${PACKAGE} -Version 10.0.26100.3323 -OutputDirectory ${PROJECT_BINARY_DIR}/packages)
2121
endforeach()
2222
endif()
2323
endif()

0 commit comments

Comments
 (0)