mirror of
https://github.com/sunnypilot/sunnypilot.git
synced 2026-02-20 00:03:54 +08:00
* precommit ensure executable
* exclude tinygrad
* bump submodules
* exclude tinygrad globally
old-commit-hash: 4e69937d0d
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
|
|
## ``` |