-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexternal-tools.json
More file actions
23 lines (23 loc) · 889 Bytes
/
external-tools.json
File metadata and controls
23 lines (23 loc) · 889 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"$schema": "../build-infra/lib/external-tools-schema.json",
"description": "External tools required for building and running binflate",
"tools": {
"lzfse": {
"description": "LZFSE compression library (build dependency)",
"notes": [
"LZFSE library is a build dependency used by LIEF builds",
"Compression now uses zstd (Zstandard) across all platforms",
"On Linux/Windows: Builds automatically from lzfse git submodule",
"No manual installation required - handled by build system"
]
},
"msys2": {
"description": "MSYS2 provides Unix-like build environment for Windows",
"notes": [
"Required for Windows builds to provide MinGW toolchain and Unix utilities",
"On GitHub Actions: Pre-installed at C:/msys64",
"Local development: Install from https://www.msys2.org/"
]
}
}
}