Skip to content

Commit 98bf8d4

Browse files
Change msvc to msvc143
1 parent 2d9ae6e commit 98bf8d4

File tree

6 files changed

+43
-10
lines changed

6 files changed

+43
-10
lines changed

.github/actions/build-package/action.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@ runs:
77
- uses: seanmiddleditch/gha-setup-ninja@master
88

99
- uses: ilammy/msvc-dev-cmd@v1
10-
if: contains(matrix.cfg.ARCHITECTURE, '-x64-msvc')
10+
if: contains(matrix.cfg.ARCHITECTURE, '-x64-msvc143')
1111
with:
1212
arch: x64
1313

1414
- uses: ilammy/msvc-dev-cmd@v1
15-
if: contains(matrix.cfg.ARCHITECTURE, '-arm64-msvc')
15+
if: contains(matrix.cfg.ARCHITECTURE, '-arm64-msvc143')
1616
with:
1717
arch: amd64_arm64
1818

.github/workflows/build-assimp.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ jobs:
2424
- { os: ubuntu-20.04, triple: linux-x64-gcc9 }
2525
- { os: ubuntu-20.04, triple: linux-armv7-gcc9 }
2626
- { os: ubuntu-20.04, triple: linux-aarch64-gcc9 }
27-
- { os: windows-2022, triple: windows-x64-msvc }
28-
- { os: windows-2022, triple: windows-arm64-msvc }
27+
- { os: windows-2022, triple: windows-x64-msvc143 }
28+
- { os: windows-2022, triple: windows-arm64-msvc143 }
2929
- { os: windows-2022, triple: windows-x64-mingw64 }
3030

3131
steps:

.github/workflows/build-freeimage.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ jobs:
2424
- { os: ubuntu-20.04, triple: linux-x64-gcc9 }
2525
- { os: ubuntu-20.04, triple: linux-armv7-gcc9 }
2626
- { os: ubuntu-20.04, triple: linux-aarch64-gcc9 }
27-
- { os: windows-2022, triple: windows-x64-msvc }
28-
- { os: windows-2022, triple: windows-arm64-msvc }
27+
- { os: windows-2022, triple: windows-x64-msvc143 }
28+
- { os: windows-2022, triple: windows-arm64-msvc143 }
2929
- { os: windows-2022, triple: windows-x64-mingw64 }
3030

3131
steps:

.github/workflows/build-libcurl.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ jobs:
2424
- { os: ubuntu-20.04, triple: linux-x64-gcc9 }
2525
- { os: ubuntu-20.04, triple: linux-armv7-gcc9 }
2626
- { os: ubuntu-20.04, triple: linux-aarch64-gcc9 }
27-
- { os: windows-2022, triple: windows-x64-msvc }
28-
- { os: windows-2022, triple: windows-arm64-msvc }
27+
- { os: windows-2022, triple: windows-x64-msvc143 }
28+
- { os: windows-2022, triple: windows-arm64-msvc143 }
2929
- { os: windows-2022, triple: windows-x64-mingw64 }
3030

3131
steps:

.github/workflows/build-mbedtls.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ jobs:
2424
- { os: ubuntu-20.04, triple: linux-x64-gcc9 }
2525
- { os: ubuntu-20.04, triple: linux-armv7-gcc9 }
2626
- { os: ubuntu-20.04, triple: linux-aarch64-gcc9 }
27-
- { os: windows-2022, triple: windows-x64-msvc }
28-
- { os: windows-2022, triple: windows-arm64-msvc }
27+
- { os: windows-2022, triple: windows-x64-msvc143 }
28+
- { os: windows-2022, triple: windows-arm64-msvc143 }
2929
- { os: windows-2022, triple: windows-x64-mingw64 }
3030

3131
steps:

README.md

+33
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,41 @@ Following architectures are supported:
1616

1717
Currently, `armv6` is not provided as it is unlikely that anyone would want to run OpenFrameworks on a Raspberry PI Zero, as it has very limited processing power and is unlikely to be enough for an OpenFrameworks application anyways.
1818

19+
See: https://developer.arm.com/downloads/-/arm-gnu-toolchain-downloads
20+
https://github.com/llvm/llvm-project/releases/tag/llvmorg-10.0.1
21+
22+
Also, cross-compiled packages like `armv7` and `aarch64` are only available for GCC compilers.
23+
1924
## Hosted packages
2025

26+
| | Status |
27+
|-----------------:|:--------------:|
28+
| Windows 64 | Done |
29+
| Windows ARM64 | Done |
30+
| Windows ARM64EC | |
31+
| Linux x86_64 | Done |
32+
| Linux armv6 | Not Planned |
33+
| Linux armv7 | Done |
34+
| Linux aarch64 | Done |
35+
| MacOS 64 | |
36+
| MacOS ARM64 | |
37+
| Emscripten | |
38+
| iOS ARM64 | |
39+
| iOS X86_64 SIM | |
40+
| iOS ARM64 SIM | |
41+
| tvOS ARM64 | |
42+
| tvOS X86_64 SIM | |
43+
| tvOS ARM64 SIM | |
44+
| XROS ARM64 | |
45+
| XROS X86_64 SIM | |
46+
| XROS ARM64 SIM | |
47+
| MAC CATOS ARM64 | |
48+
| MAC CATOS x86_64 | |
49+
| Android ARM64 | |
50+
| Android X86_64 | |
51+
| Android X86 | |
52+
| Android ARMV7 | |
53+
2154
All prebuilt binary packages can be found at:
2255
https://github.com/openframeworks/packages/releases/tag/latest
2356

0 commit comments

Comments
 (0)