Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ runner starts clean.
the default `C:\WinDDK` installation path.
- Downloads, extracts, and caches WDK7 automatically on Windows runners.
- Exposes a bundled CMake toolchain for `i386` and `amd64` builds.
- Provides private WDK7 compatibility headers, including `stdint.h`.
- Supports user-mode binaries, kernel `.sys` targets, and legacy
`ddkbuild.cmd` projects.
- Optionally prepares the Debugging Tools SDK for DbgEng and WinDbg extension
Expand Down
5 changes: 0 additions & 5 deletions cmake/wdk7.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -133,9 +133,6 @@ set(WDK7_CL "${WDK7_BIN}/cl.exe")
set(WDK7_LINK "${WDK7_BIN}/link.exe")
set(WDK7_RC "${WDK7_HOST_BIN}/rc.exe")
set(WDK7_NMAKE "${WDK7_HOST_BIN}/nmake.exe")
get_filename_component(_WDK7_TOOLCHAIN_DIR "${CMAKE_CURRENT_LIST_FILE}" DIRECTORY)
get_filename_component(_WDK7_ACTION_ROOT "${_WDK7_TOOLCHAIN_DIR}" DIRECTORY)
set(WDK7_COMPAT_INCLUDE_DIR "${_WDK7_ACTION_ROOT}/include")

foreach (_tool IN ITEMS WDK7_CL WDK7_LINK WDK7_RC WDK7_NMAKE)
if (NOT EXISTS "${${_tool}}")
Expand All @@ -156,14 +153,12 @@ endif()
set(ENV{PATH} "${WDK7_BIN};${WDK7_HOST_BIN};$ENV{PATH}")

set(WDK7_USER_INCLUDE_DIRS
"${WDK7_COMPAT_INCLUDE_DIR}"
"${WDK7_ROOT}/inc/api/crt/stl70"
"${WDK7_ROOT}/inc/atl71"
"${WDK7_ROOT}/inc/crt"
"${WDK7_ROOT}/inc/api"
"${WDK7_ROOT}/inc/ddk")
set(WDK7_KERNEL_INCLUDE_DIRS
"${WDK7_COMPAT_INCLUDE_DIR}"
"${WDK7_ROOT}/inc/crt"
"${WDK7_ROOT}/inc/ddk"
"${WDK7_ROOT}/inc/api")
Expand Down
41 changes: 0 additions & 41 deletions include/stdint.h

This file was deleted.

5 changes: 1 addition & 4 deletions test/e2e/cmake/exe.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
#include <stdint.h>
#include <windows.h>

/*
Expand All @@ -7,11 +6,9 @@
*/
int main(void)
{
uint64_t value = UINT64_C(42);

/*
* Returning success keeps the fixture focused on toolchain behavior rather
* than runtime behavior.
*/
return value == 42 ? 0 : 1;
return 0;
}
Loading