mirror of
https://github.com/sunnypilot/sunnypilot.git
synced 2026-08-08 02:05:43 +08:00
8cac9b5f21
version: sunnypilot v2026.003.000 (dev)
date: 2026-08-07T02:56:16
master commit: 9e0d89968d
12 lines
323 B
Bash
Executable File
12 lines
323 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
if [ ! -d perfetto ]; then
|
|
git clone https://android.googlesource.com/platform/external/perfetto/
|
|
fi
|
|
|
|
cd perfetto
|
|
|
|
tools/install-build-deps --linux-arm
|
|
tools/gn gen --args='is_debug=false target_os="linux" target_cpu="arm64"' out/linux
|
|
tools/ninja -C out/linux tracebox traced traced_probes perfetto
|