Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

iOS Support #107

Merged
merged 14 commits into from
Jul 27, 2024
Prev Previous commit
Fix vpx for iphonesimulator
  • Loading branch information
HeavenVolkoff committed Jul 27, 2024
commit 791937b763851d00f0172116a2029713ccbaa33f
4 changes: 3 additions & 1 deletion stages/50-vpx.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@ mkdir -p vpx
# v1.14.1
curl_tar 'https://gitlab.freedesktop.org/amyspark/libvpx/-/archive/8260fdd/libvpx.tar.gz' vpx 1

# Remove xcrun tool check, because compiling for macOS don't use it and it breaks crosscompiling
# Delete lines related to xcrun tool usage, it is irrelevant for us
sed -i '1183,1189d' vpx/meson.build
# Remove xcrun tool check, it is irrelevant for us
sed -i "/xcrun_exe = find_program('xcrun', required: true)/d" vpx/meson.build

# Remove some superfluous files
Expand Down