This commit includes the changes to the build system, updated hashes to the actual new libraries as well as a required test update. * DPC++ 6.2.0 RC * freetype 2.13.3 * HIP 6.4.5010 * IGC 2.16.0 * ISPC 1.28.0 * libharu 2.4.5 * libpng 1.6.50 * libvpx 1.15.2 * libxml2 2.14.5 * LLVM 20.1.8 * Manifold 3.2.1 * MaterialX 1.39.3 * OpenColorIO 2.4.2 * openexr 3.3.5 * OpenImageIO 3.0.9.1 * openjpeg 2.5.3 * OpenShadingLanguage 1.14.7.0 * openssl 3.5.2 * Python 3.11.13 * Rubber Band 4.0.0 * ShaderC 2025.3 * sqlite 3.50.4 * USD 25.08 * Wayland 1.24.0 Ref #138940 Co-authored-by: Ray Molenkamp <github@lazydodo.com> Co-authored-by: Jesse Yurkovich <jesse.y@gmail.com> Co-authored-by: Brecht Van Lommel <brecht@blender.org> Co-authored-by: Nikita Sirgienko <nikita.sirgienko@intel.com> Co-authored-by: Sybren A. Stüvel <sybren@blender.org> Co-authored-by: Kace <lakacey03@gmail.com> Co-authored-by: Sebastian Parborg <sebastian@blender.org> Co-authored-by: Anthony Roberts <anthony.roberts@linaro.org> Co-authored-by: Jonas Holzman <jonas@holzman.fr> Pull Request: https://projects.blender.org/blender/blender/pulls/144479
285 lines
7.0 KiB
CMake
285 lines
7.0 KiB
CMake
# SPDX-FileCopyrightText: 2017-2023 Blender Authors
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
if(NOT WIN32)
|
|
set(temp_LIBDIR ${LIBDIR})
|
|
set(LIBDIR_FLAG "-L")
|
|
else()
|
|
set(temp_LIBDIR ${msys2_LIBDIR})
|
|
set(LIBDIR_FLAG "-LIBPATH:")
|
|
endif()
|
|
|
|
set(FFMPEG_CFLAGS "\
|
|
-I${temp_LIBDIR}/lame/include \
|
|
-I${temp_LIBDIR}/openjpeg/include/ \
|
|
-I${temp_LIBDIR}/ogg/include \
|
|
-I${temp_LIBDIR}/vorbis/include \
|
|
-I${temp_LIBDIR}/theora/include \
|
|
-I${temp_LIBDIR}/opus/include \
|
|
-I${temp_LIBDIR}/vpx/include \
|
|
-I${temp_LIBDIR}/x264/include \
|
|
-I${temp_LIBDIR}/zlib/include \
|
|
-I${temp_LIBDIR}/aom/include \
|
|
-I${temp_LIBDIR}/x265/include"
|
|
)
|
|
set(FFMPEG_LDFLAGS "\
|
|
${LIBDIR_FLAG}${temp_LIBDIR}/lame/lib \
|
|
${LIBDIR_FLAG}${temp_LIBDIR}/openjpeg/lib \
|
|
${LIBDIR_FLAG}${temp_LIBDIR}/ogg/lib \
|
|
${LIBDIR_FLAG}${temp_LIBDIR}/vorbis/lib \
|
|
${LIBDIR_FLAG}${temp_LIBDIR}/theora/lib \
|
|
${LIBDIR_FLAG}${temp_LIBDIR}/opus/lib \
|
|
${LIBDIR_FLAG}${temp_LIBDIR}/vpx/lib \
|
|
${LIBDIR_FLAG}${temp_LIBDIR}/x264/lib \
|
|
${LIBDIR_FLAG}${temp_LIBDIR}/x265/lib \
|
|
${LIBDIR_FLAG}${temp_LIBDIR}/zlib/lib \
|
|
${LIBDIR_FLAG}${temp_LIBDIR}/aom/lib"
|
|
)
|
|
|
|
set(FFMPEG_PATCH_FILE)
|
|
|
|
if(WIN32)
|
|
set(FFMPEG_CFLAGS "\
|
|
${FFMPEG_CFLAGS} \
|
|
-I${temp_LIBDIR}/openjpeg_msvc/include/openjpeg-2.5 \
|
|
-I${temp_LIBDIR}/opus/include/opus \
|
|
-DOPJ_STATIC \
|
|
-MD \
|
|
-UHAVE_UNISTD_H"
|
|
)
|
|
|
|
set(FFMPEG_LDFLAGS "\
|
|
${FFMPEG_LDFLAGS} \
|
|
${LIBDIR_FLAG}${temp_LIBDIR}/openjpeg_msvc/lib \
|
|
ucrt.lib"
|
|
)
|
|
|
|
# As we now use MSVC on windows, pkgconfig is not really a viable option for many packages
|
|
# so this patch removes those checks in favour of looking for the libs directly.
|
|
set(FFMPEG_PATCH_FILE ${PATCH_DIR}/ffmpeg_windows.diff)
|
|
else()
|
|
# OpenJpeg is compiled with pthread support on Linux, which is all fine and is what we
|
|
# want for maximum runtime performance, but due to static nature of that library we
|
|
# need to force ffmpeg to link against pthread, otherwise test program used by autoconf
|
|
# will fail. This patch does that in a way that is compatible with multiple distributions.
|
|
set(FFMPEG_PATCH_FILE ${PATCH_DIR}/ffmpeg.diff)
|
|
endif()
|
|
|
|
set(FFMPEG_EXTRA_FLAGS
|
|
--pkg-config-flags=--static
|
|
--extra-cflags=${FFMPEG_CFLAGS}
|
|
--extra-ldflags=${FFMPEG_LDFLAGS}
|
|
)
|
|
|
|
set(FFMPEG_ENV)
|
|
if(NOT WIN32)
|
|
set(FFMPEG_ENV "PKG_CONFIG_PATH=\
|
|
${temp_LIBDIR}/openjpeg/lib/pkgconfig:\
|
|
${temp_LIBDIR}/x264/lib/pkgconfig:\
|
|
${temp_LIBDIR}/vorbis/lib/pkgconfig:\
|
|
${temp_LIBDIR}/ogg/lib/pkgconfig:\
|
|
${temp_LIBDIR}/vpx/lib/pkgconfig:\
|
|
${temp_LIBDIR}/theora/lib/pkgconfig:\
|
|
${temp_LIBDIR}/openjpeg/lib/pkgconfig:\
|
|
${temp_LIBDIR}/opus/lib/pkgconfig:\
|
|
${temp_LIBDIR}/aom/lib/pkgconfig:\
|
|
${temp_LIBDIR}/x265/lib/pkgconfig:"
|
|
)
|
|
endif()
|
|
|
|
unset(temp_LIBDIR)
|
|
|
|
if(WIN32)
|
|
set(FFMPEG_EXTRA_FLAGS
|
|
${FFMPEG_EXTRA_FLAGS}
|
|
--disable-static
|
|
--enable-shared
|
|
--enable-w32threads
|
|
--disable-pthreads
|
|
--enable-libopenjpeg
|
|
--disable-mediafoundation
|
|
--toolchain=msvc
|
|
--target-os=win32
|
|
)
|
|
|
|
if(BLENDER_PLATFORM_ARM)
|
|
set(FFMPEG_EXTRA_FLAGS
|
|
${FFMPEG_EXTRA_FLAGS}
|
|
--arch=aarch64
|
|
"--as=${DOWNLOAD_DIR}/msys2/msys64/usr/bin/gas-preprocessor.pl -arch aarch64 -as-type armasm -- armasm64 -nologo"
|
|
--cc=${LIBDIR}/llvm/bin/clang-cl.exe
|
|
--cxx=${LIBDIR}/llvm/bin/clang-cl.exe
|
|
--windres=${LIBDIR}/llvm/bin/llvm-rc.exe
|
|
--nm=${LIBDIR}/llvm/bin/llvm-nm.exe
|
|
--ar='${LIBDIR}/llvm/bin/llvm-ar.exe'
|
|
--ranlib=${LIBDIR}/llvm/bin/llvm-ranlib.exe
|
|
)
|
|
else()
|
|
set(FFMPEG_EXTRA_FLAGS
|
|
${FFMPEG_EXTRA_FLAGS}
|
|
--disable-inline-asm
|
|
--arch=x86_64
|
|
)
|
|
endif()
|
|
|
|
set(FFMPEG_CONFIGURE_COMMAND ${CONFIGURE_ENV_MSVC})
|
|
else()
|
|
set(FFMPEG_EXTRA_FLAGS
|
|
${FFMPEG_EXTRA_FLAGS}
|
|
--enable-static
|
|
--disable-shared
|
|
--enable-libopenjpeg
|
|
)
|
|
|
|
set(FFMPEG_CONFIGURE_COMMAND ${CONFIGURE_ENV_NO_PERL})
|
|
endif()
|
|
|
|
if(APPLE)
|
|
set(FFMPEG_EXTRA_FLAGS
|
|
${FFMPEG_EXTRA_FLAGS}
|
|
--target-os=darwin
|
|
--x86asmexe=${LIBDIR}/nasm/bin/nasm
|
|
)
|
|
elseif(UNIX)
|
|
set(FFMPEG_EXTRA_FLAGS
|
|
${FFMPEG_EXTRA_FLAGS}
|
|
--x86asmexe=${LIBDIR}/nasm/bin/nasm
|
|
)
|
|
endif()
|
|
|
|
ExternalProject_Add(external_ffmpeg
|
|
URL file://${PACKAGE_DIR}/${FFMPEG_FILE}
|
|
DOWNLOAD_DIR ${DOWNLOAD_DIR}
|
|
URL_HASH ${FFMPEG_HASH_TYPE}=${FFMPEG_HASH}
|
|
|
|
PATCH_COMMAND ${PATCH_CMD} --verbose -p 1 -N -d
|
|
${BUILD_DIR}/ffmpeg/src/external_ffmpeg <
|
|
${FFMPEG_PATCH_FILE}
|
|
|
|
PREFIX ${BUILD_DIR}/ffmpeg
|
|
|
|
CONFIGURE_COMMAND ${FFMPEG_CONFIGURE_COMMAND} &&
|
|
cd ${BUILD_DIR}/ffmpeg/src/external_ffmpeg/ &&
|
|
${FFMPEG_ENV} ${CONFIGURE_COMMAND_NO_TARGET} ${FFMPEG_EXTRA_FLAGS}
|
|
--disable-lzma
|
|
--disable-vdpau
|
|
--disable-bzlib
|
|
--disable-libgsm
|
|
--disable-libspeex
|
|
--enable-libvpx
|
|
--enable-libopus
|
|
--prefix=${LIBDIR}/ffmpeg
|
|
--enable-libtheora
|
|
--enable-libvorbis
|
|
--enable-zlib
|
|
--enable-stripping
|
|
--enable-runtime-cpudetect
|
|
--disable-vaapi
|
|
--disable-nonfree
|
|
--enable-gpl
|
|
--disable-postproc
|
|
--enable-libmp3lame
|
|
--disable-librtmp
|
|
--enable-libx264
|
|
--enable-libx265
|
|
--enable-libaom
|
|
--disable-libopencore-amrnb
|
|
--disable-libopencore-amrwb
|
|
--disable-libdc1394
|
|
--disable-version3
|
|
--disable-debug
|
|
--enable-optimizations
|
|
--enable-ffplay
|
|
--disable-openssl
|
|
--disable-securetransport
|
|
--disable-indev=avfoundation
|
|
--disable-indev=qtkit
|
|
--disable-sdl2
|
|
--disable-gnutls
|
|
--disable-videotoolbox
|
|
--disable-libxcb
|
|
--disable-xlib
|
|
--disable-audiotoolbox
|
|
--disable-cuvid
|
|
--disable-nvenc
|
|
--disable-indev=jack
|
|
--disable-indev=alsa
|
|
--disable-outdev=alsa
|
|
--disable-sndio
|
|
--disable-doc
|
|
|
|
BUILD_COMMAND ${FFMPEG_CONFIGURE_COMMAND} &&
|
|
cd ${BUILD_DIR}/ffmpeg/src/external_ffmpeg/ &&
|
|
make -j${MAKE_THREADS}
|
|
|
|
INSTALL_COMMAND ${FFMPEG_CONFIGURE_COMMAND} &&
|
|
cd ${BUILD_DIR}/ffmpeg/src/external_ffmpeg/ &&
|
|
make install
|
|
|
|
CMAKE_ARGS
|
|
-DCMAKE_INSTALL_PREFIX=${LIBDIR}/ffmpeg
|
|
${DEFAULT_CMAKE_FLAGS}
|
|
|
|
INSTALL_DIR ${LIBDIR}/ffmpeg
|
|
)
|
|
|
|
if(MSVC)
|
|
set_target_properties(external_ffmpeg PROPERTIES FOLDER Mingw)
|
|
endif()
|
|
|
|
add_dependencies(
|
|
external_ffmpeg
|
|
external_zlib
|
|
external_x264
|
|
external_x265
|
|
external_opus
|
|
external_vpx
|
|
external_theora
|
|
external_vorbis
|
|
external_ogg
|
|
external_lame
|
|
external_aom
|
|
external_sndfile
|
|
external_flac
|
|
)
|
|
if(WIN32)
|
|
add_dependencies(
|
|
external_ffmpeg
|
|
external_zlib
|
|
external_openjpeg_msvc
|
|
)
|
|
|
|
if(BLENDER_PLATFORM_ARM)
|
|
add_dependencies(
|
|
external_ffmpeg
|
|
ll
|
|
)
|
|
endif()
|
|
endif()
|
|
if(UNIX)
|
|
add_dependencies(
|
|
external_ffmpeg
|
|
external_nasm
|
|
external_openjpeg
|
|
)
|
|
endif()
|
|
|
|
if(WIN32)
|
|
if(BUILD_MODE STREQUAL Release)
|
|
ExternalProject_Add_Step(external_ffmpeg after_install
|
|
COMMAND ${CMAKE_COMMAND} -E copy_directory
|
|
${LIBDIR}/ffmpeg/include
|
|
${HARVEST_TARGET}/ffmpeg/include
|
|
COMMAND ${CMAKE_COMMAND} -E copy_directory
|
|
${LIBDIR}/ffmpeg/bin
|
|
${HARVEST_TARGET}/ffmpeg/lib
|
|
|
|
DEPENDEES install
|
|
)
|
|
endif()
|
|
else()
|
|
harvest(external_ffmpeg ffmpeg/include ffmpeg/include "*.h")
|
|
harvest(external_ffmpeg ffmpeg/lib ffmpeg/lib "*.a")
|
|
endif()
|