Skip to content

Commit

Permalink
install gcc-aarch64-linux-gnu
Browse files Browse the repository at this point in the history
  • Loading branch information
selimseker committed Sep 6, 2024
1 parent 2f3a18e commit 566be00
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/build_prod_exe.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@ jobs:
strategy:
matrix:
include:
- { runner: macos-latest, osname: macOS, arch: amd64, target: x86_64-apple-darwin }
- { runner: macos-latest, osname: macOS, arch: arm64, target: aarch64-apple-darwin }
# - { runner: macos-latest, osname: macOS, arch: amd64, target: x86_64-apple-darwin }
# - { runner: macos-latest, osname: macOS, arch: arm64, target: aarch64-apple-darwin }
- { runner: ubuntu-latest, osname: linux, arch: amd64, target: x86_64-unknown-linux-gnu }
- { runner: ubuntu-latest, osname: linux, arch: arm64, target: aarch64-unknown-linux-gnu}
- { runner: windows-latest, osname: windows, arch: amd64, target: x86_64-pc-windows-msvc, extension: ".exe"}
- { runner: windows-latest, osname: windows, arch: arm64, target: aarch64-unknown-linux-gnu, extension: ".exe"}
# - { runner: ubuntu-latest, osname: linux, arch: arm64, target: aarch64-unknown-linux-gnu}
# - { runner: windows-latest, osname: windows, arch: amd64, target: x86_64-pc-windows-msvc, extension: ".exe"}
# - { runner: windows-latest, osname: windows, arch: arm64, target: aarch64-unknown-linux-gnu, extension: ".exe"}

steps:
- name: Checkout code
Expand Down Expand Up @@ -49,6 +49,7 @@ jobs:
sudo apt-get update
sudo apt-get install -y pkg-config libssl-dev
if [ "${{ matrix.arch }}" = "amd64" ]; then
sudo apt-get install gcc-aarch64-linux-gnu
echo "PKG_CONFIG_PATH=/usr/lib/x86_64-linux-gnu/pkgconfig" >> $GITHUB_ENV
elif [ "${{ matrix.arch }}" = "arm64" ]; then
echo "PKG_CONFIG_PATH=/usr/lib/aarch64-linux-gnu/pkgconfig" >> $GITHUB_ENV
Expand Down

0 comments on commit 566be00

Please sign in to comment.