We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 29e273e commit ccf462aCopy full SHA for ccf462a
build.sh
@@ -43,11 +43,16 @@ if [ "$BUILD_LICENSE" == "gpl" ]; then
43
if [[ "$BUILD_ARCH" =~ arm ]]; then
44
X264_ARGS="--disable-asm"
45
fi
46
+
47
INSTALL_TARGET=install-lib-${BUILD_TYPE} ./build-make-dep.sh x264 --enable-${BUILD_TYPE} $X264_ARGS
48
FF_ARGS="$FF_ARGS --enable-libx264"
49
50
+ if [ "$BUILD_TYPE" == "static" ]; then
51
+ X265_ARGS="-DSTATIC_LINK_CRT=on"
52
+ fi
53
54
git -C x265_git fetch --tags
- ./build-cmake-dep.sh x265_git/source -DENABLE_SHARED=on -DENABLE_CLI=off
55
+ ./build-cmake-dep.sh x265_git/source -DENABLE_SHARED=on -DENABLE_CLI=off $X265_ARGS
56
FF_ARGS="$FF_ARGS --enable-libx265"
57
58
0 commit comments