-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplatforms.json
More file actions
58 lines (58 loc) · 1.07 KB
/
Copy pathplatforms.json
File metadata and controls
58 lines (58 loc) · 1.07 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
47
48
49
50
51
52
53
54
55
56
57
58
[
{
"id": "linux-amd64",
"runs_on": "ubuntu-22.04",
"cxx": "g++",
"cc": "gcc"
},
{
"id": "linux-arm64",
"runs_on": "ubuntu-24.04-arm",
"cxx": "g++",
"cc": "gcc"
},
{
"id": "linux-386",
"runs_on": "ubuntu-latest",
"cxx": "g++",
"cc": "gcc",
"extra": "-m32",
"apt": "gcc-multilib g++-multilib"
},
{
"id": "windows-amd64",
"runs_on": "ubuntu-latest",
"cxx": "x86_64-w64-mingw32-g++",
"cc": "x86_64-w64-mingw32-gcc",
"apt": "mingw-w64"
},
{
"id": "windows-386",
"runs_on": "ubuntu-latest",
"cxx": "i686-w64-mingw32-g++",
"cc": "i686-w64-mingw32-gcc",
"apt": "mingw-w64"
},
{
"id": "windows-arm64",
"runs_on": "ubuntu-latest",
"cxx": "aarch64-w64-mingw32-clang++",
"cc": "aarch64-w64-mingw32-clang",
"llvm_mingw": true
},
{
"id": "darwin-amd64",
"runs_on": "macos-13",
"cxx": "clang++",
"cc": "clang"
},
{
"id": "darwin-arm64",
"runs_on": [
"self-hosted",
"macos-m4"
],
"cxx": "clang++",
"cc": "clang"
}
]