Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add __aarch64__ support #54

Merged
merged 3 commits into from
Aug 9, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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