-
Notifications
You must be signed in to change notification settings - Fork 21
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
compiling sacd-extract fails on Linux (x86) #8
Comments
@klslz Have you got a solution yet? |
I can confirm the issue on x86_64 fedora 33 as OP using the 0.3.9 release and the git release. The same release is working on a Ubuntu 20.04.01 LTS It also fails on Ubunu 20.10 which leads me to suspect something broke with newer systems. |
Since GCC version 10, default compilation is with -fno-common. The libsacd code has a couple of multiple definitions which cannot be linked if that flag is active. I have to comb through the code for a structural fix. In the meantime you could say: export CFLAGS="-fcommon" and then compile as that is the old behaviour of gcc. |
Pass |
Under Linux, on x86 with gcc 10.2.1 and Fedora 33 make fails on sacd-extract:
Any ideas?
I did try to compile it as root under ~root
THX
The text was updated successfully, but these errors were encountered: