mirror of
https://github.com/firestar5683/StarPilot.git
synced 2026-06-28 01:52:06 +08:00
3b91610c0b
* precommit ensure executable * exclude tinygrad * bump submodules * exclude tinygrad globally old-commit-hash: 4e69937d0d3fbdc7d1d42cbc18d7ccf8ddb115f1
12 lines
301 B
Bash
Executable File
12 lines
301 B
Bash
Executable File
#!/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
|
|
## ``` |