Skip to content

Commit dcf6a63

Browse files
authored
Merge pull request #132 from DanielRobertAppel/patch-1
Updating config.guess file. Which allowed me to compile on aarch64 (A…
2 parents 8d99df0 + 470f591 commit dcf6a63

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

build-ffmpeg

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -743,6 +743,11 @@ if build "libtheora" "1.1.1"; then
743743
sed "s/-fforce-addr//g" configure >configure.patched
744744
chmod +x configure.patched
745745
mv configure.patched configure
746+
##BEGIN CONFIG.GUESS PATCH -- Updating config.guess file. Which allowed me to compile on aarch64 (ARMv8) [linux kernel 4.9 Ubuntu 20.04]
747+
rm config.guess
748+
wget --quiet -O config.guess - https://raw.githubusercontent.com/gcc-mirror/gcc/master/config.guess
749+
chmod +x config.guess
750+
##END OF CONFIG.GUESS PATCH
746751
execute ./configure --prefix="${WORKSPACE}" --with-ogg-libraries="${WORKSPACE}"/lib --with-ogg-includes="${WORKSPACE}"/include/ --with-vorbis-libraries="${WORKSPACE}"/lib --with-vorbis-includes="${WORKSPACE}"/include/ --enable-static --disable-shared --disable-oggtest --disable-vorbistest --disable-examples --disable-asm --disable-spec
747752
execute make -j $MJOBS
748753
execute make install

0 commit comments

Comments
 (0)