I can't compile qsv from source... #335
jqnatividad
started this conversation in
FAQ
Replies: 1 comment 2 replies
-
How might I build qsv using a version of Rust that differs from that which |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I tried building qsv, but nothing happened, and no binaries were created!
Doing a
cargo build --release
is not enough. You need to specify which qsv variant you want to build:I can't build qsv with the
python
feature.If you get the error:
You need the python 3.12 development libraries to build qsv with the python feature. On Ubuntu Linux:
sudo apt-get install python312-dev
I need to use qsv on an old Linux distro which doesn't have the latest GNU libraries.
You can build qsv and statically link it with musl, so you can run it on older distros. To do so, you'll need to install
mustl-tools
as well:Beta Was this translation helpful? Give feedback.
All reactions