|
Bugzilla – Full Text Bug Listing |
| Summary: | [Build 20240216] KSH segfaults | ||
|---|---|---|---|
| Product: | [openSUSE] openSUSE Tumbleweed | Reporter: | Dominique Leuenberger <dimstar> |
| Component: | Other | Assignee: | Michael Schröder <mls> |
| Status: | NEW --- | QA Contact: | E-mail List <qa-bugs> |
| Severity: | Normal | ||
| Priority: | P5 - None | CC: | matz, rguenther, schwab |
| Version: | Current | ||
| Target Milestone: | --- | ||
| Hardware: | LittleEndian | ||
| OS: | Other | ||
| URL: | https://openqa.opensuse.org/tests/3945793/modules/shells/steps/7 | ||
| Whiteboard: | |||
| Found By: | openQA | Services Priority: | |
| Business Priority: | Blocker: | Yes | |
| Marketing QA Status: | --- | IT Deployment: | --- |
|
Description
Dominique Leuenberger
2024-02-17 12:28:14 UTC
It crashes in dl.so:
67085: symbol=__frexpieee128; lookup in file=/usr/bin/ksh93 [0]
67085: symbol=__frexpieee128; lookup in file=/lib64/libc.so.6 [0]
67085: symbol=__frexpieee128; lookup in file=/lib64/libm.so.6 [0]
67085: binding file /usr/lib64/ast/libast.so.5 [0] to /lib64/libm.so.6 [0]: normal symbol `__frexpieee128'
Ritchie, does that ring any bell?
(In reply to Michael Schröder from comment #1) > It crashes in dl.so: > > 67085: symbol=__frexpieee128; lookup in file=/usr/bin/ksh93 [0] > 67085: symbol=__frexpieee128; lookup in file=/lib64/libc.so.6 [0] > 67085: symbol=__frexpieee128; lookup in file=/lib64/libm.so.6 [0] > 67085: binding file /usr/lib64/ast/libast.so.5 [0] to > /lib64/libm.so.6 [0]: normal symbol `__frexpieee128' > > Ritchie, does that ring any bell? From me? It rings the glibc bell - or binutils ;) $ LD_PRELOAD=/usr/lib64/ast/libdll.so:/lib64/libm.so /bin/true Segmentation fault $ LD_PRELOAD=/usr/lib64/ast/libdll.so:/usr/lib64/ast/libast.so:/lib64/libm.so /bin/true $ |