Skip to content

Commit

Permalink
jenkins test try
Browse files Browse the repository at this point in the history
  • Loading branch information
AlwinEsch committed Mar 26, 2024
1 parent 7f74630 commit 74c4950
Showing 1 changed file with 17 additions and 2 deletions.
19 changes: 17 additions & 2 deletions depends/common/ffmpeg/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,14 @@ if(NOT WIN32)
--enable-gnutls
--enable-libzvbi
${STANDARD_CONF}
${EXTRA_CONF})
${EXTRA_CONF} ||
cmake -E echo "=========================================================" &&
cmake -E echo "FFMPEG configure error" &&
cmake -E echo "The associated config.log is output for troubleshooting." &&
cmake -E echo "--------------------------------- FFMPEG CONFIG LOG START" &&
cat ${CMAKE_BINARY_DIR}/ffmpeg-prefix/src/ffmpeg-build/ffbuild/config.log &&
cmake -E echo "----------------------------------- FFMPEG CONFIG LOG END" &&
exit 1)

if(CORE_SYSTEM_NAME STREQUAL darwin_embedded)
externalproject_add_step(ffmpeg
Expand Down Expand Up @@ -228,7 +235,15 @@ else()
${EXTRA_CONF}
--extra-cflags=[DQ]${EXTRA_CFLAGS}[DQ]
--extra-cxxflags=[DQ]${EXTRA_CXXFLAGS}[DQ]
--extra-ldflags=[DQ]${EXTRA_LDFLAGS}[DQ]
--extra-ldflags=[DQ]${EXTRA_LDFLAGS}[DQ] ||
cmake -E echo "=========================================================" &&
cmake -E echo "FFMPEG configure error" &&
cmake -E echo "The associated config.log is output for troubleshooting." &&
cmake -E echo "--------------------------------- FFMPEG CONFIG LOG START" &&
cd "${CMAKE_BINARY_DIR}\\..\\ffmpeg\\ffbuild" &&
type config.log &&
cmake -E echo "----------------------------------- FFMPEG CONFIG LOG END" &&
exit 1
BUILD_COMMAND ${MINGW_CALL}
make -j$ENV{NUMBER_OF_PROCESSORS}
INSTALL_COMMAND ${MINGW_CALL}
Expand Down

0 comments on commit 74c4950

Please sign in to comment.