Skip to content

Commit

Permalink
Add __aarch64__ support (#54)
Browse files Browse the repository at this point in the history
Co-authored-by: 0vercl0k <[email protected]>
  • Loading branch information
mmxsrup and 0vercl0k authored Aug 9, 2023
1 parent 7d8e61f commit b24e7f5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/rp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,8 @@ jobs:
- name: Build with clang
if: matrix.compiler == 'clang'
env:
CC: clang-15
CXX: clang++-15
CC: clang-17
CXX: clang++-17
run: |
cd src/build
chmod u+x ./build-release.sh
Expand Down
2 changes: 1 addition & 1 deletion src/rp/platform.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
#define ARCH_X86
#elif defined(__amd64__) || defined(_M_X64)
#define ARCH_X64
#elif defined(__arm64__)
#elif defined(__arm64__) || defined(__aarch64__)
#define ARCH_ARM64
#else
#error Platform not supported.
Expand Down

0 comments on commit b24e7f5

Please sign in to comment.