mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-25 02:41:38 +08:00
4b4766c793
* [breakpad] Update to 2022.07.12 * Also add arm64-windows to 'supports' because pe_util.cc(280) assumes IMAGE_RUNTIME_FUNCTION_ENTRY has a member UnwindInfoAddress which is only true on x86 and x64. (Note that _IMAGE_ARM_RUNTIME_FUNCTION_ENTRY, _IMAGE_ARM64_RUNTIME_FUNCTION_ENTRY, and _IMAGE_ALPHA_RUNTIME_FUNCTION_ENTRY do not have this member) Simplifying to CNF: !uwp & !(windows & (arm | arm64 | alpha)) // except of course alpha doesn''t exist !uwp & (!windows | !(arm | arm64)) !uwp & (!windows | (!arm & !arm64)) !uwp & (!windows | !arm) & (!windows | !arm64) Co-authored-by: Billy O'Neal <bion@microsoft.com>
20 lines
464 B
JSON
20 lines
464 B
JSON
{
|
|
"name": "breakpad",
|
|
"version-date": "2022-07-12",
|
|
"port-version": 1,
|
|
"description": "a set of client and server components which implement a crash-reporting system.",
|
|
"homepage": "https://github.com/google/breakpad",
|
|
"supports": "!uwp & (!windows | !arm) & (!windows | !arm64)",
|
|
"dependencies": [
|
|
"libdisasm",
|
|
{
|
|
"name": "vcpkg-cmake",
|
|
"host": true
|
|
},
|
|
{
|
|
"name": "vcpkg-cmake-config",
|
|
"host": true
|
|
}
|
|
]
|
|
}
|