This commit is contained in:
Your Name
2024-04-27 03:23:42 -05:00
parent b1c566e71e
commit fbbdf2c03c
315 changed files with 79358 additions and 3 deletions

12
third_party/libyuv/build.sh vendored Normal file
View File

@@ -0,0 +1,12 @@
#!/usr/bin/env bash
set -e
git clone https://chromium.googlesource.com/libyuv/libyuv
cd libyuv
git reset --hard 4a14cb2e81235ecd656e799aecaaf139db8ce4a2
cmake .
## To create universal binary on Darwin:
## ```
## lipo -create -output Darwin/libyuv.a path-to-x64/libyuv.a path-to-arm64/libyuv.a
## ```