mirror of
https://github.com/Alex313031/thorium.git
synced 2025-01-09 11:27:32 -03:00
add libaom script for arm64
This commit is contained in:
parent
60c32832c9
commit
6c89c24105
4 changed files with 55 additions and 0 deletions
0
infra/arch-prerequisites.sh
Normal file → Executable file
0
infra/arch-prerequisites.sh
Normal file → Executable file
48
infra/fix_libaom.sh
Executable file
48
infra/fix_libaom.sh
Executable file
|
@ -0,0 +1,48 @@
|
|||
#!/bin/bash
|
||||
|
||||
# Copyright (c) 2023 Alex313031.
|
||||
|
||||
YEL='\033[1;33m' # Yellow
|
||||
CYA='\033[1;96m' # Cyan
|
||||
RED='\033[1;31m' # Red
|
||||
GRE='\033[1;32m' # Green
|
||||
c0='\033[0m' # Reset Text
|
||||
bold='\033[1m' # Bold Text
|
||||
underline='\033[4m' # Underline Text
|
||||
|
||||
# Error handling
|
||||
yell() { echo "$0: $*" >&2; }
|
||||
die() { yell "$*"; exit 111; }
|
||||
try() { "$@" || die "${RED}Failed $*"; }
|
||||
|
||||
# --help
|
||||
displayHelp () {
|
||||
printf "\n" &&
|
||||
printf "${bold}${GRE}Script to fix libaom issues when compiling Thorium for arm64.${c0}\n" &&
|
||||
printf "\n"
|
||||
}
|
||||
case $1 in
|
||||
--help) displayHelp; exit 0;;
|
||||
esac
|
||||
|
||||
printf "\n" &&
|
||||
printf "${bold}${GRE}Regenerating build files for libaom...${c0}\n" &&
|
||||
printf "\n"
|
||||
|
||||
# chromium/src dir env variable
|
||||
if [ -z "${CR_DIR}" ]; then
|
||||
CR_SRC_DIR="$HOME/chromium/src"
|
||||
export CR_SRC_DIR
|
||||
else
|
||||
CR_SRC_DIR="${CR_DIR}"
|
||||
export CR_SRC_DIR
|
||||
fi
|
||||
cd ${CR_SRC_DIR}/third_party/libaom &&
|
||||
./cmake_update.sh &&
|
||||
|
||||
printf "\n" &&
|
||||
printf "${GRE}Done.\n" &&
|
||||
printf "\n" &&
|
||||
tput sgr0
|
||||
|
||||
exit 0
|
|
@ -49,6 +49,12 @@ sudo chmod -v +x reset_depot_tools.sh &&
|
|||
|
||||
sudo chmod -v +x version.sh &&
|
||||
|
||||
sudo chmod -v +x infra/arch-prerequisites.sh &&
|
||||
|
||||
sudo chmod -v +x infra/fetch_api_keys.sh &&
|
||||
|
||||
sudo chmod -v +x infra/fix_libaom.sh &&
|
||||
|
||||
sudo chmod -v +x infra/install_deps.sh &&
|
||||
|
||||
sudo chmod -v +x infra/build_dmg_cr.sh &&
|
||||
|
|
1
setup.sh
1
setup.sh
|
@ -96,6 +96,7 @@ copyRaspi () {
|
|||
cp -r -v arm/raspi/* ${CR_SRC_DIR}/ &&
|
||||
rm -v ${CR_SRC_DIR}/out/thorium/pak &&
|
||||
cp -v pak_src/binaries/pak_arm64 ${CR_SRC_DIR}/out/thorium/pak &&
|
||||
./infra/fix_libaom.sh &&
|
||||
printf "\n"
|
||||
}
|
||||
# Display raspi ascii art
|
||||
|
|
Loading…
Reference in a new issue