Replies: 1 comment
-
Fixed it by setting the following flags: |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'm attempting to build my program, which uses bit7z, as a shared library on CentOS 8. I'm able to build it successfully as a command line application, but when building it as a library, I get link errors related to bit7z.
A few dozen errors like this:
The error seems to be because the linker is expecting a shared library (
*.so
) and I'm giving it a static library (*.a
). I can't seem to build bit7z as a shared library though on Linux.Is there a way to build bit7z as a shared library?
Beta Was this translation helpful? Give feedback.
All reactions