Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion INSTALL.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
```
3. Install tools:
```
brew install cmake ninja openssl@1.1 zlib autoconf libtool automake yasm pkg-config
brew install cmake ninja openssl@1.1 zlib autoconf libtool automake yasm nasm meson pkg-config
```
4. Update ./scripts/rebuild file
```
Expand Down
2 changes: 1 addition & 1 deletion core-xprojects/Mozjpeg/Mozjpeg/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ echo "set(CMAKE_SYSTEM_PROCESSOR AMD64)" >> toolchain.cmake
fi
echo "set(CMAKE_C_COMPILER $(xcode-select -p)/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang)" >> toolchain.cmake

cmake -G"Unix Makefiles" -DCMAKE_TOOLCHAIN_FILE=toolchain.cmake -DCMAKE_OSX_SYSROOT=${MACOS_SYSROOT[0]} -DPNG_SUPPORTED=FALSE -DENABLE_SHARED=FALSE -DWITH_JPEG8=1 ../../$SOURCE_DIR
cmake -G"Unix Makefiles" -DCMAKE_TOOLCHAIN_FILE=toolchain.cmake -DCMAKE_OSX_SYSROOT=${MACOS_SYSROOT[0]} -DPNG_SUPPORTED=FALSE -DENABLE_SHARED=FALSE -DWITH_JPEG8=1 -DCMAKE_POLICY_VERSION_MINIMUM=3.5 ../../$SOURCE_DIR
make

cd ..
Expand Down
2 changes: 1 addition & 1 deletion core-xprojects/ffmpeg/ffmpeg/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ LIBOPUS_PATH="${BUILD_DIR}../../libopus/build/libopus"
LIBVPX_PATH="${BUILD_DIR}../../libvpx/build/libvpx"
LIBDAV1D_PATH="${BUILD_DIR}../../dav1d/build/dav1d"

FF_VERSION="7.1"
FF_VERSION="7.1.1"
SOURCE="$SOURCE_DIR/ffmpeg-$FF_VERSION"

GAS_PREPROCESSOR_PATH="$SOURCE_DIR/gas-preprocessor.pl"
Expand Down