-
Notifications
You must be signed in to change notification settings - Fork 171
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build.yaml: install cross compilation packages
- Loading branch information
1 parent
e4529d5
commit 257e432
Showing
1 changed file
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -88,7 +88,7 @@ jobs: | |
&& curl -fsSl https://apt.llvm.org/llvm-snapshot.gpg.key | sudo apt-key add - \ | ||
&& sudo add-apt-repository "deb https://apt.llvm.org/$(lsb_release -cs)/ llvm-toolchain-$(lsb_release -cs)-12 main" \ | ||
&& sudo apt update \ | ||
&& sudo apt -yqq install clang-12 clang-tools-12 lld-12 build-essential pkg-config autoconf git python | ||
&& sudo apt -yqq install clang-12 clang-tools-12 lld-12 build-essential pkg-config autoconf git python gcc-multilib libgcc-8-dev-arm64-cross mingw-w64-tools gcc-mingw-w64-x86-64 | ||
sudo update-alternatives --install /usr/bin/clang++ clang++ /usr/bin/clang++-12 30 \ | ||
&& sudo update-alternatives --install /usr/bin/clang clang /usr/bin/clang-12 30 \ | ||
|
@@ -244,7 +244,7 @@ jobs: | |
sudo apt update | ||
sudo apt install -yqq build-essential make software-properties-common | ||
sudo add-apt-repository -y ppa:git-core/ppa | ||
sudo apt update && sudo apt install -yqq git zip unzip zlib1g-dev zlib1g | ||
sudo apt update && sudo apt install -yqq git zip unzip zlib1g-dev zlib1g coreutils binutils libc++-dev libc++abi-dev libtool p7zip-full mediainfo xz-utils | ||
- name: Check out code | ||
uses: actions/[email protected] | ||
|