You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
301 B
12 lines
301 B
#!/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
|
|
## ``` |