From 0829cbf494004d8fa999861c6938411476af2576 Mon Sep 17 00:00:00 2001 From: Paul Arzelier Date: Mon, 19 Jun 2023 16:33:50 +0200 Subject: [PATCH] Add a compilation option for raspberry pis --- CHANGELOG.md | 3 +++ Cargo.toml | 2 ++ 2 files changed, 5 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 27cb825..af37081 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ #Changelog +## bliss 0.6.9 +* Add a feature flag for compilation on raspberry pis. + ## bliss 0.6.8 * Add an `update-aubio-bindings` feature. diff --git a/Cargo.toml b/Cargo.toml index ac329b4..f3f00cb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -20,6 +20,8 @@ default = ["bliss-audio-aubio-rs/static"] # Build ffmpeg instead of using the host's. build-ffmpeg = ["ffmpeg-next/build"] ffmpeg-static = ["ffmpeg-next/static"] +# Build for raspberry pis +rpi = ["ffmpeg-next/rpi"] # Use if you get "No prebuilt bindings. Try use `bindgen` feature" update-aubio-bindings = ["bliss-audio-aubio-rs/bindgen"] # Use if you want to build python bindings with maturin.