-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathtcc.json
31 lines (31 loc) · 1.31 KB
/
tcc.json
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
{
"version": "0.9.27",
"description": "The Tiny C Compiler (a.k.a. TCC, tCc, or TinyCC) is an x86, X86-64 and ARM processor C compiler created by Fabrice Bellard. It is designed to work for slow computers with little disk space (e.g. on rescue disks).",
"homepage": "https://bellard.org/tcc/",
"license": "LGPL-2.1-only",
"architecture": {
"64bit": {
"url": "https://download.savannah.gnu.org/releases/tinycc/tcc-0.9.27-win64-bin.zip",
"hash": "34a721949a2583fdff725312da092fa0f5f1f284b702e6f811c6954714faabb2"
},
"32bit": {
"url": "https://download.savannah.gnu.org/releases/tinycc/tcc-0.9.27-win32-bin.zip",
"hash": "02e2bfe8c272a549b15e4bfa4507bd7e05304692af1761db6c1e8e88af675651"
}
},
"env_add_path": "tcc",
"checkver": {
"url": "https://download.savannah.gnu.org/releases/tinycc/?C=N&O=D",
"regex": "tcc-([\\d.]+)-win64-bin\\.zip"
},
"autoupdate": {
"architecture": {
"64bit": {
"url": "https://download.savannah.gnu.org/releases/tinycc/tcc-$version-win64-bin.zip"
},
"32bit": {
"url": "https://download.savannah.gnu.org/releases/tinycc/tcc-$version-win32-bin.zip"
}
}
}
}