From: Khem Raj Date: Fri, 12 Aug 2016 03:31:14 +0000 (-0700) Subject: ffmpeg: Pas CC and CXX to configure X-Git-Tag: uninative-1.4~563 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=25deaf1368cc0a99d7b5b3f2d08d7fead51296e2;p=openembedded-core.git ffmpeg: Pas CC and CXX to configure This helps in compiling it with with toolchain coming from a sstate server where its built using a different build time sysroot. Secondly, also helps compiling with non-gcc ( clang ) compiler Signed-off-by: Khem Raj Signed-off-by: Ross Burton --- diff --git a/meta/recipes-multimedia/ffmpeg/ffmpeg_3.1.1.bb b/meta/recipes-multimedia/ffmpeg/ffmpeg_3.1.1.bb index b8acb61297..8c4fed5d6c 100644 --- a/meta/recipes-multimedia/ffmpeg/ffmpeg_3.1.1.bb +++ b/meta/recipes-multimedia/ffmpeg/ffmpeg_3.1.1.bb @@ -76,6 +76,8 @@ EXTRA_OECONF = " \ --cross-prefix=${TARGET_PREFIX} \ \ --ld="${CCLD}" \ + --cc="${CC}" \ + --cxx="${CXX}" \ --arch=${TARGET_ARCH} \ --target-os="linux" \ --enable-cross-compile \