From d6512372de6d6d97941d296cff11477f80dc1e4a Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Sat, 3 Jul 2021 18:31:23 +0000 Subject: [PATCH] libvpx: set generic CC/CXX if unset Closes #260 --- extra/libvpx/build | 3 +++ 1 file changed, 3 insertions(+) diff --git a/extra/libvpx/build b/extra/libvpx/build index 09a66b127..f055b6e3f 100755 --- a/extra/libvpx/build +++ b/extra/libvpx/build @@ -1,5 +1,7 @@ #!/bin/sh -e +export CC=${CC:-cc} CXX=${CXX:-c++} + patch -p1 < fix-busybox-diff.patch # Remove the perl requirement from configure @@ -9,6 +11,7 @@ sed -i 's/perl/:/g' configure ./configure \ --prefix=/usr \ + --target=x86_64-linux-gcc \ --enable-vp8 \ --enable-vp9 \ --enable-experimental \