-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexternal-tools.json
More file actions
46 lines (46 loc) · 1.47 KB
/
external-tools.json
File metadata and controls
46 lines (46 loc) · 1.47 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"$schema": "../build-infra/lib/external-tools-schema.json",
"description": "External tools required for building stubs-builder (stub binaries with embedded curl)",
"tools": {
"cmake": {
"description": "CMake build system generator",
"version": "3.28+",
"notes": [
"Required for building curl and mbedTLS from source",
"On GitHub Actions: Pre-installed on all runners"
]
},
"curl": {
"description": "curl library for HTTP downloads",
"notes": [
"curl tracked via git submodule at upstream/curl",
"Built from source with mbedTLS for TLS support",
"Version pinned in .gitmodules"
]
},
"mbedtls": {
"description": "mbedTLS library for TLS support",
"notes": [
"mbedTLS tracked via git submodule at upstream/mbedtls",
"Used by curl for TLS/SSL support",
"Provides smaller binary size compared to OpenSSL"
]
},
"msys2": {
"description": "MSYS2 provides Unix-like build environment for Windows",
"notes": [
"Required for Windows builds to provide MinGW toolchain",
"On GitHub Actions: Pre-installed at C:/msys64",
"Local development: Install from https://www.msys2.org/"
]
},
"ninja": {
"description": "Ninja build system",
"version": "1.11+",
"notes": [
"Used by CMake as the build backend for curl and mbedTLS",
"Provides faster parallel builds"
]
}
}
}