Skip to content
Open
Show file tree
Hide file tree
Changes from 3 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
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
strategy:
fail-fast: false
matrix:
platform: [ubuntu-latest, macos-13, macos-14, windows-latest]
platform: [ubuntu-latest, macos-13, macos-14, windows-latest, ubuntu-24.04-arm]

runs-on: ${{ matrix.platform }}
timeout-minutes: 30
Expand Down
6 changes: 5 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,11 @@ subprojects {
}
}
}
gcc(Gcc)
gcc(Gcc){
target("linux_aarch64") {
cppCompiler.executable = "/usr/bin/gcc"
}
}
}
}
}
Expand Down
1 change: 1 addition & 0 deletions openjdk/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ description = 'Tongsuo: OpenJdk'
enum NativeBuildInfo {
WINDOWS_X86_64("windows", "x86_64"),
LINUX_X86_64("linux", "x86_64"),
LINUX_AARCH64("linux", "aarch_64"),
MAC_X86_64("osx", "x86_64") {
String libDir() {
"build.x86"
Expand Down