forked from LineageOS/android_external_libaom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
generate_config.sh
executable file
·171 lines (140 loc) · 4.39 KB
/
generate_config.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
#!/bin/bash
#
# Copyright (c) 2018 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
# This script has been modified for use in Android. It is used to generate .bp
# files and files in the config/ directories needed to build libaom.
#
# Every time the upstream source code is updated this script must be run.
#
# Usage:
# $ ./generate_config.sh
# Requirements:
# Install the following Debian packages.
# - cmake3
# - yasm or nasm
# Toolchain for armv7:
# - gcc-arm-linux-gnueabihf
# - g++-arm-linux-gnueabihf
# Toolchain for arm64:
# - gcc-aarch64-linux-gnu
# - g++-aarch64-linux-gnu
# 32bit build environment for cmake. Including but potentially not limited to:
# - lib32gcc-7-dev
# - lib32stdc++-7-dev
# Alternatively: treat 32bit builds like Windows and manually tweak aom_config.h
set -eE
# sort() consistently.
export LC_ALL=C
BASE=$(pwd)
SRC="${BASE}/libaom"
CFG="${BASE}/config"
TMP=$(mktemp -d "${BASE}/build.XXXX")
# Clean up and prepare config directory
rm -rf "${CFG}"
mkdir -p "${CFG}/config"
function clean {
rm -rf "${TMP}"
}
# Create empty temp and config directories.
# $1 - Header file directory.
function reset_dirs {
cd "${BASE}"
rm -rf "${TMP}"
mkdir "${TMP}"
cd "${TMP}"
echo "Generate ${1} config files."
mkdir -p "${CFG}/${1}/config"
}
if [ $# -ne 0 ]; then
echo "Unknown option(s): ${@}"
exit 1
fi
# Missing function:
# find_duplicates
# We may have enough targets to avoid re-implementing this.
# Generate Config files.
# $1 - Header file directory.
# $2 - cmake options.
function gen_config_files {
cmake "${SRC}" ${2} &> cmake.txt
case "${1}" in
x86*)
egrep "#define [A-Z0-9_]+ [01]" config/aom_config.h | \
awk '{print "%define " $2 " " $3}' > config/aom_config.asm
;;
esac
cp config/aom_config.{h,c,asm} "${CFG}/${1}/config/"
cp config/*_rtcd.h "${CFG}/${1}/config/"
#clang-format -i "${CFG}/${1}/config/"*_rtcd.h
}
function update_readme {
local IFS=$'\n'
# Split git log output '<date>\n<commit hash>' on the newline to produce 2
# array entries.
local vals=($(git -C "${SRC}" --no-pager log -1 --format="%cd%n%H" \
--date=format:"%A %B %d %Y"))
sed -E -i.bak \
-e "s/^(Date:)[[:space:]]+.*$/\1 ${vals[0]}/" \
-e "s/^(Commit:)[[:space:]]+[a-f0-9]{40}/\1 ${vals[1]}/" \
${BASE}/README.android
rm ${BASE}/README.android.bak
cat <<EOF
README.android updated with:
Date: ${vals[0]}
Commit: ${vals[1]}
EOF
}
cd "${TMP}"
# Scope 'trap' error reporting to configuration generation.
(
trap '{
[ -f ${TMP}/cmake.txt ] && cat ${TMP}/cmake.txt
echo "Build directory ${TMP} not removed automatically."
}' ERR
all_platforms="-DCONFIG_SIZE_LIMIT=1"
all_platforms+=" -DDECODE_HEIGHT_LIMIT=16384 -DDECODE_WIDTH_LIMIT=16384"
all_platforms+=" -DCONFIG_AV1_ENCODER=0"
all_platforms+=" -DCONFIG_LOWBITDEPTH=1"
all_platforms+=" -DCONFIG_MAX_DECODE_PROFILE=0"
all_platforms+=" -DCONFIG_NORMAL_TILE_MODE=1"
# Android requires ssse3. Simplify the build by disabling everything above that
# and RTCD.
all_platforms+=" -DENABLE_SSE4_1=0"
all_platforms+=" -DCONFIG_RUNTIME_CPU_DETECT=0"
toolchain="-DCMAKE_TOOLCHAIN_FILE=${SRC}/build/cmake/toolchains"
reset_dirs x86
gen_config_files x86 "${toolchain}/x86-linux.cmake ${all_platforms} -DCONFIG_PIC=1"
# libaom_srcs.gni and aom_version.h are shared.
cp libaom_srcs.gni "${BASE}"
cp config/aom_version.h "${CFG}/config/"
reset_dirs x86_64
gen_config_files x86_64 "${all_platforms}"
reset_dirs arm
gen_config_files arm "${toolchain}/armv7-linux-gcc.cmake ${all_platforms}"
reset_dirs arm64
gen_config_files arm64 "${toolchain}/arm64-linux-gcc.cmake ${all_platforms}"
)
# This needs to be run by update_libaom.sh before the .git file is removed.
#update_readme
# libaom_srcs.gni was built for Chromium. Remove:
# - the path prefix (//third_party/libaom/source/)
# - comments (lines starting with #)
# - header files
# - perl scripts (rtcd)
rm -f "${BASE}/Android.bp"
(
echo "// THIS FILE IS AUTOGENERATED, DO NOT EDIT"
echo "// Generated from Android.bp.in, run ./generate_config.sh to regenerate"
echo
cat "${BASE}/libaom_srcs.gni" |
grep -v ^\# |
sed 's/\/\/third_party\/libaom\/source\///' |
grep -v h\",$ |
grep -v pl\",$
cat "${BASE}/Android.bp.in"
) > "${BASE}/Android.bp"
rm -f "${BASE}/libaom_srcs.gni"
bpfmt -w "${BASE}/Android.bp" || echo "bpfmt not found: format Android.bp manually."
clean