Files
Xenia-Canary/CMakePresets.json
Claude (auto-RE) 30d05ee97b
Some checks failed
Orchestrator / Commit Message Validation (push) Has been skipped
Orchestrator / Lint (push) Failing after 2m0s
Orchestrator / Windows (x86-64) (push) Has been skipped
Orchestrator / Linux (x86-64) (push) Has been skipped
Orchestrator / Create Release (push) Has been skipped
snapshot: preserve the uncommitted Canary instrumentation (not authored here)
Working-tree snapshot taken 2026-07-28 so this work is not lost. To be clear
about provenance: NONE of this was written in the session that committed it —
it is pre-existing uncommitted work on phase-a-tracing, last committed 2026-07-09,
from the xenia-rs decoder/deadlock investigation. It is recorded verbatim, not
reviewed and not tested.

Contents: 24 tracked modifications (ppc_emit_memory, xex_module, object_table,
shim_utils, xboxkrnl threading/rtl, xevent/xobject/xthread, memory) plus the
untracked probe sources audit_68_host_mem_watch, audit_69_event_signal_watch,
audit_70_semaphore_release_watch, phase_b_snapshot, and cmake/toolchains.

Deliberately excluded: build-cross/ (51 GB of build output) and
vkd3d-proton.cache. Note third_party/snappy is a submodule pointer change whose
target may not be pushed anywhere, so this branch is a preservation record rather
than a guaranteed-buildable tree.

Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
2026-07-28 20:03:33 +00:00

126 lines
3.0 KiB
JSON

{
"version": 3,
"cmakeMinimumRequired": {
"major": 3,
"minor": 20,
"patch": 0
},
"configurePresets": [
{
"name": "default",
"displayName": "Ninja Multi-Config",
"generator": "Ninja Multi-Config",
"binaryDir": "${sourceDir}/build"
},
{
"name": "vs",
"displayName": "Visual Studio 2022",
"generator": "Visual Studio 17 2022",
"condition": {
"type": "equals",
"lhs": "${hostSystemName}",
"rhs": "Windows"
},
"architecture": "x64",
"binaryDir": "${sourceDir}/build"
},
{
"name": "vs-arm64",
"displayName": "Visual Studio 2022 (ARM64)",
"generator": "Visual Studio 17 2022",
"condition": {
"type": "equals",
"lhs": "${hostSystemName}",
"rhs": "Windows"
},
"architecture": "ARM64",
"toolset": "host=x64",
"binaryDir": "${sourceDir}/build/vs-arm64",
"cacheVariables": {
"CMAKE_SYSTEM_PROCESSOR": "ARM64"
}
},
{
"name": "cross-win-clangcl",
"displayName": "Cross (Linux->Win MSVC) clang-cl + xwin",
"generator": "Ninja Multi-Config",
"binaryDir": "${sourceDir}/build-cross",
"toolchainFile": "${sourceDir}/cmake/toolchains/linux-to-win-msvc.cmake",
"condition": {
"type": "notEquals",
"lhs": "${hostSystemName}",
"rhs": "Windows"
},
"cacheVariables": {
"XWIN_DIR": "$env{HOME}/.xwin/splat",
"FXC_PATH": "$env{HOME}/.local/share/xenia-cross/fxc/fxc.exe"
}
}
],
"buildPresets": [
{
"name": "debug",
"displayName": "Debug",
"configurePreset": "default",
"configuration": "Debug"
},
{
"name": "release",
"displayName": "Release",
"configurePreset": "default",
"configuration": "Release"
},
{
"name": "checked",
"displayName": "Checked",
"configurePreset": "default",
"configuration": "Checked"
},
{
"name": "vs-debug",
"configurePreset": "vs",
"configuration": "Debug"
},
{
"name": "vs-release",
"configurePreset": "vs",
"configuration": "Release"
},
{
"name": "vs-checked",
"configurePreset": "vs",
"configuration": "Checked"
},
{
"name": "vs-arm64-debug",
"configurePreset": "vs-arm64",
"configuration": "Debug"
},
{
"name": "vs-arm64-release",
"configurePreset": "vs-arm64",
"configuration": "Release"
},
{
"name": "vs-arm64-checked",
"configurePreset": "vs-arm64",
"configuration": "Checked"
},
{
"name": "cross-debug",
"configurePreset": "cross-win-clangcl",
"configuration": "Debug"
},
{
"name": "cross-release",
"configurePreset": "cross-win-clangcl",
"configuration": "Release"
},
{
"name": "cross-checked",
"configurePreset": "cross-win-clangcl",
"configuration": "Checked"
}
]
}