mirror of
git://code.qt.io/qt/qt5.git
synced 2026-04-22 12:56:45 +08:00
Android FFmpeg provisioning requires 'readelf', which is provided by binutils package. This package is shown to be flaky on older macOS x86 hosts. It is not critical that we compile that we compile Android FFmpeg on these hosts, so this patch removes them. Pick-to: 6.8 Change-Id: I6722f2c543b022a998573cc76ffc671378a4fcb5 Reviewed-by: Tero Heikkinen <tero.heikkinen@qt.io> (cherry picked from commit033329cb00) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org> (cherry picked from commit13db7987b8)
10 lines
424 B
Bash
Executable File
10 lines
424 B
Bash
Executable File
#!/usr/bin/env bash
|
|
#Copyright (C) 2023 The Qt Company Ltd
|
|
#SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
|
|
|
|
set -ex
|
|
|
|
source "${BASH_SOURCE%/*}/../common/macos/install-ffmpeg-macos.sh" "macos-universal"
|
|
#source "${BASH_SOURCE%/*}/../common/unix/install-ffmpeg-android.sh" "android-arm64" "use_16kb_page_size"
|
|
source "${BASH_SOURCE%/*}/../common/unix/install-ffmpeg-ios.sh"
|