runtime or build time dependencies #187
Answered
by
mhx
silentnoodlemaster
asked this question in
Q&A
-
is the flac library needed needed as a runtime dependency or is it only during build? |
Beta Was this translation helpful? Give feedback.
Answered by
mhx
Jan 23, 2024
Replies: 2 comments 9 replies
-
It's a run-time dependency. You can explicitly build with |
Beta Was this translation helpful? Give feedback.
4 replies
Answer selected by
silentnoodlemaster
-
at runtime, would it be libFLAC++.so , or the flac binary. and build time the header files from FLAC++ ? |
Beta Was this translation helpful? Give feedback.
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
It's a run-time dependency. You can explicitly build with
-DENABLE_FLAC=OFF
if you want to drop FLAC support. The prebuilt binaries from the release page are all built statically linked with FLAC.