From 5e0e966976fe08314b8a28eb53583563986f8c9d Mon Sep 17 00:00:00 2001 From: graysky Date: Mon, 7 Mar 2022 18:05:02 -0500 Subject: [PATCH] mcpu=cortex-xxx application to ffmpeg Get build system to patch ffmpeg source removing the -march= flag --- cmake/modules/FindFFMPEG.cmake | 1 + 1 file changed, 1 insertion(+) diff --git a/cmake/modules/FindFFMPEG.cmake b/cmake/modules/FindFFMPEG.cmake index ee600d0d83..5a7fd2e70f 100644 --- a/cmake/modules/FindFFMPEG.cmake +++ b/cmake/modules/FindFFMPEG.cmake @@ -89,6 +89,7 @@ macro(buildFFMPEG) ${CMAKE_SOURCE_DIR}/cmake/modules/FindGnuTLS.cmake && patch -p1 < ${CMAKE_SOURCE_DIR}/tools/depends/target/ffmpeg/0001-rpi-Add-hevc-acceleration.patch && + patch -p1 < ${CMAKE_SOURCE_DIR}/tools/depends/target/ffmpeg/0002-use-mcpu-avoiding-march-and-mtune.patch && echo "########################################## patched ffmpeg ##############################" ) -- 2.35.1