Note: This bug is displayed in read-only format because
the product is no longer active in Red Hat Bugzilla.
RHEL Engineering is moving the tracking of its product development work on RHEL 6 through RHEL 9 to Red Hat Jira (issues.redhat.com). If you're a Red Hat customer, please continue to file support cases via the Red Hat customer portal. If you're not, please head to the "RHEL project" in Red Hat Jira and file new tickets here. Individual Bugzilla bugs in the statuses "NEW", "ASSIGNED", and "POST" are being migrated throughout September 2023. Bugs of Red Hat partners with an assigned Engineering Partner Manager (EPM) are migrated in late September as per pre-agreed dates. Bugs against components "kernel", "kernel-rt", and "kpatch" are only migrated if still in "NEW" or "ASSIGNED". If you cannot log in to RH Jira, please consult article #7032570. That failing, please send an e-mail to the RH Jira admins at rh-issues@redhat.com to troubleshoot your issue as a user management inquiry. The email creates a ServiceNow ticket with Red Hat. Individual Bugzilla bugs that are migrated will be moved to status "CLOSED", resolution "MIGRATED", and set with "MigratedToJIRA" in "Keywords". The link to the successor Jira issue will be found under "Links", have a little "two-footprint" icon next to it, and direct you to the "RHEL project" in Red Hat Jira (issue links are of type "https://issues.redhat.com/browse/RHEL-XXXX", where "X" is a digit). This same link will be available in a blue banner at the top of the page informing you that that bug has been migrated.
DescriptionFrantisek Sumsal
2022-09-16 07:21:26 UTC
Description of problem:
In current C8S there's no gcc-toolset-12-libatomic-devel package, which seems to break building stuff with clang when using -latomic. There are such packages for older gcc versions:
gcc-toolset-10-libatomic-devel.ppc64le : The GNU Atomic static library
gcc-toolset-11-libatomic-devel.ppc64le : The GNU Atomic static library
gcc-toolset-9-libatomic-devel.ppc64le : The GNU Atomic static library
but the latest C8S clang depends on gcc-toolset-12.
Downgrading clang to clang-14.0.0-1.module_el8.7.0+1142+5343df54.x86_64 seems to help, as it seems to depends on older gcc/gcc-toolset.
I'm not sure which side to blame here, so apologies in advance if I picked the wrong one.
Version-Release number of selected component (if applicable):
gcc-toolset-12-gcc-12.1.1-3.2.el8.x86_64
clang-14.0.6-1.module_el8.7.0+1198+0c3eb6e2.x86_64
libatomic-8.5.0-15.el8.x86_64
How reproducible:
Always
Steps to Reproduce:
# dnf install clang libatomic
# cat >main.c <<EOF
#include <stdint.h>
int main() {
char i;
__atomic_exchange_1(&i, 1, 0);
return 1;
}
EOF
# clang -o main main.c -latomic
Actual results:
## clang-14.0.6-1.module_el8.7.0+1198+0c3eb6e2.x86_64
# clang -o main main.c -latomic
main.c:5:4: warning: implicit declaration of function '__atomic_exchange_1' is invalid in C99 [-Wimplicit-function-declaration]
__atomic_exchange_1(&i, 1, 0);
^
1 warning generated.
/usr/bin/ld: cannot find -latomic
clang-14: error: linker command failed with exit code 1 (use -v to see invocation)
Expected results:
## clang-14.0.0-1.module_el8.7.0+1142+5343df54.x86_64
# clang -o main main.c -latomic
main.c:5:4: warning: implicit declaration of function '__atomic_exchange_1' is invalid in C99 [-Wimplicit-function-declaration]
__atomic_exchange_1(&i, 1, 0);
^
1 warning generated.
# echo $?
0
Additional info:
## clang-14.0.6-1.module_el8.7.0+1198+0c3eb6e2.x86_64
# strace -f -e openat -- clang -o main main.c -latomic |& grep libatomic.so
[pid 267] openat(AT_FDCWD, "/opt/rh/gcc-toolset-12/root/usr/lib/gcc/x86_64-redhat-linux/12/libatomic.so", O_RDONLY) = -1 ENOENT (No such file or directory)
[pid 267] openat(AT_FDCWD, "/opt/rh/gcc-toolset-12/root/usr/lib/gcc/x86_64-redhat-linux/12/../../../../lib64/libatomic.so", O_RDONLY) = -1 ENOENT (No such file or directory)
[pid 267] openat(AT_FDCWD, "/lib/../lib64/libatomic.so", O_RDONLY) = -1 ENOENT (No such file or directory)
[pid 267] openat(AT_FDCWD, "/usr/lib/../lib64/libatomic.so", O_RDONLY) = -1 ENOENT (No such file or directory)
[pid 267] openat(AT_FDCWD, "/lib/libatomic.so", O_RDONLY) = -1 ENOENT (No such file or directory)
[pid 267] openat(AT_FDCWD, "/usr/lib/libatomic.so", O_RDONLY) = -1 ENOENT (No such file or directory)
[pid 267] openat(AT_FDCWD, "//usr/x86_64-redhat-linux/lib64/libatomic.so", O_RDONLY) = -1 ENOENT (No such file or directory)
[pid 267] openat(AT_FDCWD, "//usr/lib64/libatomic.so", O_RDONLY) = -1 ENOENT (No such file or directory)
[pid 267] openat(AT_FDCWD, "//usr/local/lib64/libatomic.so", O_RDONLY) = -1 ENOENT (No such file or directory)
[pid 267] openat(AT_FDCWD, "//lib64/libatomic.so", O_RDONLY) = -1 ENOENT (No such file or directory)
[pid 267] openat(AT_FDCWD, "//usr/x86_64-redhat-linux/lib/libatomic.so", O_RDONLY) = -1 ENOENT (No such file or directory)
[pid 267] openat(AT_FDCWD, "//usr/local/lib/libatomic.so", O_RDONLY) = -1 ENOENT (No such file or directory)
[pid 267] openat(AT_FDCWD, "//lib/libatomic.so", O_RDONLY) = -1 ENOENT (No such file or directory)
[pid 267] openat(AT_FDCWD, "//usr/lib/libatomic.so", O_RDONLY) = -1 ENOENT (No such file or directory)
## clang-14.0.0-1.module_el8.7.0+1142+5343df54.x86_64
# strace -f -e openat -- clang -o main main.c -latomic |& grep libatomic.so
[pid 318] openat(AT_FDCWD, "/usr/bin/../lib/gcc/x86_64-redhat-linux/8/libatomic.so", O_RDONLY) = 8
[pid 318] openat(AT_FDCWD, "/usr/bin/../lib/gcc/x86_64-redhat-linux/8/libatomic.so", O_RDONLY) = 9
[pid 318] openat(AT_FDCWD, "/usr/bin/../lib/gcc/x86_64-redhat-linux/8/libatomic.so", O_RDONLY) = 8
[pid 318] openat(AT_FDCWD, "/usr/lib64/libatomic.so.1.2.0", O_RDONLY) = 8
Description of problem: In current C8S there's no gcc-toolset-12-libatomic-devel package, which seems to break building stuff with clang when using -latomic. There are such packages for older gcc versions: gcc-toolset-10-libatomic-devel.ppc64le : The GNU Atomic static library gcc-toolset-11-libatomic-devel.ppc64le : The GNU Atomic static library gcc-toolset-9-libatomic-devel.ppc64le : The GNU Atomic static library but the latest C8S clang depends on gcc-toolset-12. Downgrading clang to clang-14.0.0-1.module_el8.7.0+1142+5343df54.x86_64 seems to help, as it seems to depends on older gcc/gcc-toolset. I'm not sure which side to blame here, so apologies in advance if I picked the wrong one. Version-Release number of selected component (if applicable): gcc-toolset-12-gcc-12.1.1-3.2.el8.x86_64 clang-14.0.6-1.module_el8.7.0+1198+0c3eb6e2.x86_64 libatomic-8.5.0-15.el8.x86_64 How reproducible: Always Steps to Reproduce: # dnf install clang libatomic # cat >main.c <<EOF #include <stdint.h> int main() { char i; __atomic_exchange_1(&i, 1, 0); return 1; } EOF # clang -o main main.c -latomic Actual results: ## clang-14.0.6-1.module_el8.7.0+1198+0c3eb6e2.x86_64 # clang -o main main.c -latomic main.c:5:4: warning: implicit declaration of function '__atomic_exchange_1' is invalid in C99 [-Wimplicit-function-declaration] __atomic_exchange_1(&i, 1, 0); ^ 1 warning generated. /usr/bin/ld: cannot find -latomic clang-14: error: linker command failed with exit code 1 (use -v to see invocation) Expected results: ## clang-14.0.0-1.module_el8.7.0+1142+5343df54.x86_64 # clang -o main main.c -latomic main.c:5:4: warning: implicit declaration of function '__atomic_exchange_1' is invalid in C99 [-Wimplicit-function-declaration] __atomic_exchange_1(&i, 1, 0); ^ 1 warning generated. # echo $? 0 Additional info: ## clang-14.0.6-1.module_el8.7.0+1198+0c3eb6e2.x86_64 # strace -f -e openat -- clang -o main main.c -latomic |& grep libatomic.so [pid 267] openat(AT_FDCWD, "/opt/rh/gcc-toolset-12/root/usr/lib/gcc/x86_64-redhat-linux/12/libatomic.so", O_RDONLY) = -1 ENOENT (No such file or directory) [pid 267] openat(AT_FDCWD, "/opt/rh/gcc-toolset-12/root/usr/lib/gcc/x86_64-redhat-linux/12/../../../../lib64/libatomic.so", O_RDONLY) = -1 ENOENT (No such file or directory) [pid 267] openat(AT_FDCWD, "/lib/../lib64/libatomic.so", O_RDONLY) = -1 ENOENT (No such file or directory) [pid 267] openat(AT_FDCWD, "/usr/lib/../lib64/libatomic.so", O_RDONLY) = -1 ENOENT (No such file or directory) [pid 267] openat(AT_FDCWD, "/lib/libatomic.so", O_RDONLY) = -1 ENOENT (No such file or directory) [pid 267] openat(AT_FDCWD, "/usr/lib/libatomic.so", O_RDONLY) = -1 ENOENT (No such file or directory) [pid 267] openat(AT_FDCWD, "//usr/x86_64-redhat-linux/lib64/libatomic.so", O_RDONLY) = -1 ENOENT (No such file or directory) [pid 267] openat(AT_FDCWD, "//usr/lib64/libatomic.so", O_RDONLY) = -1 ENOENT (No such file or directory) [pid 267] openat(AT_FDCWD, "//usr/local/lib64/libatomic.so", O_RDONLY) = -1 ENOENT (No such file or directory) [pid 267] openat(AT_FDCWD, "//lib64/libatomic.so", O_RDONLY) = -1 ENOENT (No such file or directory) [pid 267] openat(AT_FDCWD, "//usr/x86_64-redhat-linux/lib/libatomic.so", O_RDONLY) = -1 ENOENT (No such file or directory) [pid 267] openat(AT_FDCWD, "//usr/local/lib/libatomic.so", O_RDONLY) = -1 ENOENT (No such file or directory) [pid 267] openat(AT_FDCWD, "//lib/libatomic.so", O_RDONLY) = -1 ENOENT (No such file or directory) [pid 267] openat(AT_FDCWD, "//usr/lib/libatomic.so", O_RDONLY) = -1 ENOENT (No such file or directory) ## clang-14.0.0-1.module_el8.7.0+1142+5343df54.x86_64 # strace -f -e openat -- clang -o main main.c -latomic |& grep libatomic.so [pid 318] openat(AT_FDCWD, "/usr/bin/../lib/gcc/x86_64-redhat-linux/8/libatomic.so", O_RDONLY) = 8 [pid 318] openat(AT_FDCWD, "/usr/bin/../lib/gcc/x86_64-redhat-linux/8/libatomic.so", O_RDONLY) = 9 [pid 318] openat(AT_FDCWD, "/usr/bin/../lib/gcc/x86_64-redhat-linux/8/libatomic.so", O_RDONLY) = 8 [pid 318] openat(AT_FDCWD, "/usr/lib64/libatomic.so.1.2.0", O_RDONLY) = 8