Skip to content

Commit

Permalink
fix: Apple silicon proved to not work. Reverting back to Intel only.
Browse files Browse the repository at this point in the history
  • Loading branch information
atteneder committed Jan 31, 2021
1 parent 505ce5d commit 1bc7b2b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ jobs:
lfs: true

- name: configure_mac
run: cmake . -Bbuild_mac -DCMAKE_OSX_ARCHITECTURES="x86_64;arm64"
# TODO: add arm64 once it is working
run: cmake . -Bbuild_mac -DCMAKE_OSX_ARCHITECTURES="x86_64"
- name: build_mac
run: cmake --build build_mac --config MinSizeRel --target ktx_unity -- ONLY_ACTIVE_ARCH=NO

Expand Down
1 change: 0 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [0.3.0] - 2021-01-31
### Added
- Support for Apple Silicon on macOS via a universal library
- Universal Windows Platform architectures
- ARM
- ARM64 (Microsoft Hololens2)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
This projects provides a C wrapper for [KTX-Software](https://github.com/KhronosGroup/KTX-Software) including C wrappers for Basis Universal (.basis format) and a CMake configuration to build native libraries for following platforms:

- macOS Universal (Intel and Apple Silicon)
- macOS (Intel only)
- Windows 64-bit
- Universal Windows Platform (x86,x64,arm and arm64)
- Linux x86_64
Expand Down

0 comments on commit 1bc7b2b

Please sign in to comment.