We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a15972c commit ee697edCopy full SHA for ee697ed
.github/workflows/rust.yml
@@ -45,11 +45,15 @@ jobs:
45
libgstrtspserver-1.0-dev \
46
libges-1.0-dev
47
48
- - name: Install cross-compiler for aarch64
+ - name: Install cross pkg-config and ARM64 dev libs
49
if: matrix.target == 'aarch64-unknown-linux-gnu'
50
run: |
51
sudo apt-get update
52
- sudo apt-get install -y gcc-aarch64-linux-gnu libc6-dev-arm64-cross
+ sudo apt-get install -y \
53
+ gcc-aarch64-linux-gnu \
54
+ libc6-dev-arm64-cross \
55
+ pkg-config-aarch64-linux-gnu
56
+ echo "PKG_CONFIG=aarch64-linux-gnu-pkg-config" >> $GITHUB_ENV
57
58
- name: Add target if needed
59
run: rustup target add ${{ matrix.target }}
0 commit comments