这是indexloc提供的服务,不要输入任何密码
Skip to content
Merged
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
6 changes: 3 additions & 3 deletions build-ffmpeg
Original file line number Diff line number Diff line change
Expand Up @@ -529,7 +529,7 @@ if ! isLinux; then

download "https://pkgconfig.freedesktop.org/releases/pkg-config-0.29.2.tar.gz"

execute ./configure --silent --prefix="${WORKSPACE}" --with-pc-path="${WORKSPACE}/lib/pkgconfig:/usr/lib/${TARGET_ARCH}-${OSTYPE}/pkgconfig" --with-internal-glib
execute ./configure CFLAGS="-g -O2 -Wno-int-conversion" --silent --prefix="${WORKSPACE}" --with-pc-path="${WORKSPACE}/lib/pkgconfig:/usr/lib/${TARGET_ARCH}-${OSTYPE}/pkgconfig" --with-internal-glib
execute make -j ${MJOBS}
execute make install

Expand Down Expand Up @@ -705,13 +705,13 @@ if command_exists "python3"; then
if command_exists "pip3"; then

# meson and ninja can be installed via pip3
execute pip3 install pip setuptools --quiet --upgrade --no-cache-dir --disable-pip-version-check
execute /usr/bin/pip3 install pip setuptools --quiet --upgrade --no-cache-dir --disable-pip-version-check

for r in meson ninja; do

if ! command_exists ${r}; then

execute pip3 install ${r} --quiet --upgrade --no-cache-dir --disable-pip-version-check
execute /usr/bin/pip3 install ${r} --quiet --upgrade --no-cache-dir --disable-pip-version-check
fi

export PATH=${PATH}:~/Library/Python/3.9/bin
Expand Down
Loading
Loading