[opensuse-arm] Applications can't find libraries in /usr/local/lib
openSUSE 12.3 on ODROID-X. I reinstalled glibc but still getting the problem. ODROID-X:/3/ODROID-X/SUSE/hamlib # ldd /usr/local/bin/rigctl libhamlib.so.2 => not found libltdl.so.7 => /usr/lib/libltdl.so.7 (0xb6f6c000) libm.so.6 => /lib/libm.so.6 (0xb6ef9000) libusb-0.1.so.4 => /usr/lib/libusb-0.1.so.4 (0xb6eec000) libdl.so.2 => /lib/libdl.so.2 (0xb6edf000) libgcc_s.so.1 => /lib/libgcc_s.so.1 (0xb6eb5000) libpthread.so.0 => /lib/libpthread.so.0 (0xb6e95000) libc.so.6 => /lib/libc.so.6 (0xb6d5d000) /lib/ld-linux-armhf.so.3 (0xb6f96000) libusb-1.0.so.0 => /usr/lib/libusb-1.0.so.0 (0xb6d47000) librt.so.1 => /lib/librt.so.1 (0xb6d38000) # cat /etc/ld.so.conf /usr/local/lib include /etc/ld.so.conf.d/*.conf # /lib64, /lib, /usr/lib64 and /usr/lib gets added # automatically by ldconfig after parsing this file. # So, they do not need to be listed. # ldconfig -v /usr/local/lib: librtlsdr.so.0 -> librtlsdr.so.0.0.0 libcodec2.so.0 -> libcodec2.so.0.0.0 libhamlib++.so.2 -> libhamlib++.so.2.1.0 libhamlib.so.2 -> libhamlib.so.2.1.0 ODROID-X:/3/ODROID-X/SUSE/hamlib # rigctl rigctl: error while loading shared libraries: libhamlib.so.2: cannot open shared object file: No such file or directory ODROID-X:/3/ODROID-X/SUSE/hamlib # LD_LIBRARY_PATH=/usr/local/lib rigctl -l | less Rig # Mfg Model Version Status 1 Hamlib Dummy 0.5 Beta 2 Hamlib NET rigctl 0.3 Beta 101 Yaesu FT-847 0.5 Beta 103 Yaesu FT-1000D 0.0.6 Alpha 104 Yaesu MARK-V FT-1000MP 0.0.5 Alpha 105 Yaesu FT-747GX 0.4.1 Beta ldconfig -p also lists it in the cache. Regards Sid. -- Sid Boyce ... Hamradio License G3VBV, Licensed Private Pilot Emeritus IBM/Amdahl Mainframes and Sun/Fujitsu Servers Tech Support Senior Staff Specialist, Cricket Coach Microsoft Windows Free Zone - Linux used for all Computing Tasks -- To unsubscribe, e-mail: opensuse-arm+unsubscribe@opensuse.org To contact the owner, e-mail: opensuse-arm+owner@opensuse.org
Sid Boyce <sboyce@blueyonder.co.uk> writes:
ldconfig -p also lists it in the cache.
And what does it print? Andreas. -- Andreas Schwab, SUSE Labs, schwab@suse.de GPG Key fingerprint = 0196 BAD8 1CE9 1970 F4BE 1748 E4D4 88E3 0EEA B9D7 "And now for something completely different." -- To unsubscribe, e-mail: opensuse-arm+unsubscribe@opensuse.org To contact the owner, e-mail: opensuse-arm+owner@opensuse.org
On 17/04/13 08:29, Andreas Schwab wrote:
Sid Boyce <sboyce@blueyonder.co.uk> writes:
ldconfig -p also lists it in the cache. And what does it print?
Andreas.
For /usr/local/lib it prints out what's expected. So the problem is that binaries when executed can't see them. Running strace, /usr/local/lib is never searched. librtlsdr.so.0 (libc6) => /usr/local/lib/librtlsdr.so.0 librtlsdr.so (libc6) => /usr/local/lib/librtlsdr.so libhamlib.so.2 (libc6) => /usr/local/lib/libhamlib.so.2 libhamlib.so (libc6) => /usr/local/lib/libhamlib.so libhamlib++.so.2 (libc6) => /usr/local/lib/libhamlib++.so.2 libhamlib++.so (libc6) => /usr/local/lib/libhamlib++.so # strace -s 256 -f rigctl -l|grep local <STUFF DELETED> open("/usr/lib/v7l/libhamlib.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) stat64("/usr/lib/v7l", 0xbea66b00) = -1 ENOENT (No such file or directory) open("/usr/lib/neon/vfp/libhamlib.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) stat64("/usr/lib/neon/vfp", 0xbea66b00) = -1 ENOENT (No such file or directory) open("/usr/lib/neon/libhamlib.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) stat64("/usr/lib/neon", 0xbea66b00) = -1 ENOENT (No such file or directory) open("/usr/lib/vfp/libhamlib.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) stat64("/usr/lib/vfp", 0xbea66b00) = -1 ENOENT (No such file or directory) open("/usr/lib/libhamlib.so.2", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory) stat64("/usr/lib", {st_mode=S_IFDIR|0755, st_size=90112, ...}) = 0 writev(2, [{"rigctl", 6}, {": ", 2}, {"error while loading shared libraries", 36}, {": ", 2}, {"libhamlib.so.2", 14}, {": ", 2}, {"cannot open shared object file", 30}, {": ", 2}, {"No such file or directory", 25}, {"\n", 1}], 10rigctl: error while loading shared libraries: libhamlib.so.2: cannot open shared object file: No such file or directory ) = 120 exit_group(127) = ? +++ exited with 127 +++ Regards Sid. -- Sid Boyce ... Hamradio License G3VBV, Licensed Private Pilot Emeritus IBM/Amdahl Mainframes and Sun/Fujitsu Servers Tech Support Senior Staff Specialist, Cricket Coach Microsoft Windows Free Zone - Linux used for all Computing Tasks -- To unsubscribe, e-mail: opensuse-arm+unsubscribe@opensuse.org To contact the owner, e-mail: opensuse-arm+owner@opensuse.org
Sid Boyce <sboyce@blueyonder.co.uk> writes:
For /usr/local/lib it prints out what's expected.
No second hand guesses. Show us the *facts*. Andreas. -- Andreas Schwab, SUSE Labs, schwab@suse.de GPG Key fingerprint = 0196 BAD8 1CE9 1970 F4BE 1748 E4D4 88E3 0EEA B9D7 "And now for something completely different." -- To unsubscribe, e-mail: opensuse-arm+unsubscribe@opensuse.org To contact the owner, e-mail: opensuse-arm+owner@opensuse.org
On 17/04/13 09:56, Andreas Schwab wrote:
Sid Boyce <sboyce@blueyonder.co.uk> writes:
For /usr/local/lib it prints out what's expected. No second hand guesses. Show us the *facts*.
Andreas.
What Guesses and where? I didn't guess anything I just cut and pasted what was output from ldconfig -p that was pertinent to /usr/local/lib, the same libraries that the executed binary said doesn't exist but are shown in ldconfig -v and /etc/ld.so.cache. ODROID-X:/3/ODROID-X # cat /etc/ld.so.conf /usr/local/lib include /etc/ld.so.conf.d/*.conf # /lib64, /lib, /usr/lib64 and /usr/lib gets added # automatically by ldconfig after parsing this file. # So, they do not need to be listed. The strace is from "strace -s 256 -f rigctl -l". Regards Sid. -- Sid Boyce ... Hamradio License G3VBV, Licensed Private Pilot Emeritus IBM/Amdahl Mainframes and Sun/Fujitsu Servers Tech Support Senior Staff Specialist, Cricket Coach Microsoft Windows Free Zone - Linux used for all Computing Tasks
Please run the binary with LD_DEBUG=libs:files. Andreas. -- Andreas Schwab, SUSE Labs, schwab@suse.de GPG Key fingerprint = 0196 BAD8 1CE9 1970 F4BE 1748 E4D4 88E3 0EEA B9D7 "And now for something completely different." -- To unsubscribe, e-mail: opensuse-arm+unsubscribe@opensuse.org To contact the owner, e-mail: opensuse-arm+owner@opensuse.org
On 17/04/13 10:46, Andreas Schwab wrote:
Please run the binary with LD_DEBUG=libs:files.
Andreas.
ODROID-X:/3/ODROID-X # LD_DEBUG=libs:files rigctl -l 14279: 14279: file=libhamlib.so.2 [0]; needed by rigctl [0] 14279: find library=libhamlib.so.2 [0]; searching 14279: search path=/usr/lib/mpi/gcc/openmpi/lib/tls/v7l/neon/vfp:/usr/lib/mpi/gcc/openmpi/lib/tls/v7l/neon:/usr/lib/mpi/gcc/openmpi/lib/tls/v7l/vfp:/usr/lib/mpi/gcc/openmpi/lib/tls/v7l:/usr/lib/mpi/gcc/openmpi/lib/tls/neon/vfp:/usr/lib/mpi/gcc/openmpi/lib/tls/neon:/usr/lib/mpi/gcc/openmpi/lib/tls/vfp:/usr/lib/mpi/gcc/openmpi/lib/tls:/usr/lib/mpi/gcc/openmpi/lib/v7l/neon/vfp:/usr/lib/mpi/gcc/openmpi/lib/v7l/neon:/usr/lib/mpi/gcc/openmpi/lib/v7l/vfp:/usr/lib/mpi/gcc/openmpi/lib/v7l:/usr/lib/mpi/gcc/openmpi/lib/neon/vfp:/usr/lib/mpi/gcc/openmpi/lib/neon:/usr/lib/mpi/gcc/openmpi/lib/vfp:/usr/lib/mpi/gcc/openmpi/lib (LD_LIBRARY_PATH) 14279: trying file=/usr/lib/mpi/gcc/openmpi/lib/tls/v7l/neon/vfp/libhamlib.so.2 14279: trying file=/usr/lib/mpi/gcc/openmpi/lib/tls/v7l/neon/libhamlib.so.2 14279: trying file=/usr/lib/mpi/gcc/openmpi/lib/tls/v7l/vfp/libhamlib.so.2 14279: trying file=/usr/lib/mpi/gcc/openmpi/lib/tls/v7l/libhamlib.so.2 14279: trying file=/usr/lib/mpi/gcc/openmpi/lib/tls/neon/vfp/libhamlib.so.2 14279: trying file=/usr/lib/mpi/gcc/openmpi/lib/tls/neon/libhamlib.so.2 14279: trying file=/usr/lib/mpi/gcc/openmpi/lib/tls/vfp/libhamlib.so.2 14279: trying file=/usr/lib/mpi/gcc/openmpi/lib/tls/libhamlib.so.2 14279: trying file=/usr/lib/mpi/gcc/openmpi/lib/v7l/neon/vfp/libhamlib.so.2 14279: trying file=/usr/lib/mpi/gcc/openmpi/lib/v7l/neon/libhamlib.so.2 14279: trying file=/usr/lib/mpi/gcc/openmpi/lib/v7l/vfp/libhamlib.so.2 14279: trying file=/usr/lib/mpi/gcc/openmpi/lib/v7l/libhamlib.so.2 14279: trying file=/usr/lib/mpi/gcc/openmpi/lib/neon/vfp/libhamlib.so.2 14279: trying file=/usr/lib/mpi/gcc/openmpi/lib/neon/libhamlib.so.2 14279: trying file=/usr/lib/mpi/gcc/openmpi/lib/vfp/libhamlib.so.2 14279: trying file=/usr/lib/mpi/gcc/openmpi/lib/libhamlib.so.2 14279: search cache=/etc/ld.so.cache 14279: search path=/lib/tls/v7l/neon/vfp:/lib/tls/v7l/neon:/lib/tls/v7l/vfp:/lib/tls/v7l:/lib/tls/neon/vfp:/lib/tls/neon:/lib/tls/vfp:/lib/tls:/lib/v7l/neon/vfp:/lib/v7l/neon:/lib/v7l/vfp:/lib/v7l:/lib/neon/vfp:/lib/neon:/lib/vfp:/lib:/usr/lib/tls/v7l/neon/vfp:/usr/lib/tls/v7l/neon:/usr/lib/tls/v7l/vfp:/usr/lib/tls/v7l:/usr/lib/tls/neon/vfp:/usr/lib/tls/neon:/usr/lib/tls/vfp:/usr/lib/tls:/usr/lib/v7l/neon/vfp:/usr/lib/v7l/neon:/usr/lib/v7l/vfp:/usr/lib/v7l:/usr/lib/neon/vfp:/usr/lib/neon:/usr/lib/vfp:/usr/lib (system search path) 14279: trying file=/lib/tls/v7l/neon/vfp/libhamlib.so.2 14279: trying file=/lib/tls/v7l/neon/libhamlib.so.2 14279: trying file=/lib/tls/v7l/vfp/libhamlib.so.2 14279: trying file=/lib/tls/v7l/libhamlib.so.2 14279: trying file=/lib/tls/neon/vfp/libhamlib.so.2 14279: trying file=/lib/tls/neon/libhamlib.so.2 14279: trying file=/lib/tls/vfp/libhamlib.so.2 14279: trying file=/lib/tls/libhamlib.so.2 14279: trying file=/lib/v7l/neon/vfp/libhamlib.so.2 14279: trying file=/lib/v7l/neon/libhamlib.so.2 14279: trying file=/lib/v7l/vfp/libhamlib.so.2 14279: trying file=/lib/v7l/libhamlib.so.2 14279: trying file=/lib/neon/vfp/libhamlib.so.2 14279: trying file=/lib/neon/libhamlib.so.2 14279: trying file=/lib/vfp/libhamlib.so.2 14279: trying file=/lib/libhamlib.so.2 14279: trying file=/usr/lib/tls/v7l/neon/vfp/libhamlib.so.2 14279: trying file=/usr/lib/tls/v7l/neon/libhamlib.so.2 14279: trying file=/usr/lib/tls/v7l/vfp/libhamlib.so.2 14279: trying file=/usr/lib/tls/v7l/libhamlib.so.2 14279: trying file=/usr/lib/tls/neon/vfp/libhamlib.so.2 14279: trying file=/usr/lib/tls/neon/libhamlib.so.2 14279: trying file=/usr/lib/tls/vfp/libhamlib.so.2 14279: trying file=/usr/lib/tls/libhamlib.so.2 14279: trying file=/usr/lib/v7l/neon/vfp/libhamlib.so.2 14279: trying file=/usr/lib/v7l/neon/libhamlib.so.2 14279: trying file=/usr/lib/v7l/vfp/libhamlib.so.2 14279: trying file=/usr/lib/v7l/libhamlib.so.2 14279: trying file=/usr/lib/neon/vfp/libhamlib.so.2 14279: trying file=/usr/lib/neon/libhamlib.so.2 14279: trying file=/usr/lib/vfp/libhamlib.so.2 14279: trying file=/usr/lib/libhamlib.so.2 14279: rigctl: error while loading shared libraries: libhamlib.so.2: cannot open shared object file: No such file or directory Regards Sid. -- Sid Boyce ... Hamradio License G3VBV, Licensed Private Pilot Emeritus IBM/Amdahl Mainframes and Sun/Fujitsu Servers Tech Support Senior Staff Specialist, Cricket Coach Microsoft Windows Free Zone - Linux used for all Computing Tasks -- To unsubscribe, e-mail: opensuse-arm+unsubscribe@opensuse.org To contact the owner, e-mail: opensuse-arm+owner@opensuse.org
On 17/04/13 12:06, Sid Boyce wrote:
On 17/04/13 10:46, Andreas Schwab wrote:
Please run the binary with LD_DEBUG=libs:files.
Andreas.
ODROID-X:/3/ODROID-X # LD_DEBUG=libs:files rigctl -l 14279: 14279: file=libhamlib.so.2 [0]; needed by rigctl [0] 14279: find library=libhamlib.so.2 [0]; searching 14279: search path=/usr/lib/mpi/gcc/openmpi/lib/tls/v7l/neon/vfp:/usr/lib/mpi/gcc/openmpi/lib/tls/v7l/neon:/usr/lib/mpi/gcc/openmpi/lib/tls/v7l/vfp:/usr/lib/mpi/gcc/openmpi/lib/tls/v7l:/usr/lib/mpi/gcc/openmpi/lib/tls/neon/vfp:/usr/lib/mpi/gcc/openmpi/lib/tls/neon:/usr/lib/mpi/gcc/openmpi/lib/tls/vfp:/usr/lib/mpi/gcc/openmpi/lib/tls:/usr/lib/mpi/gcc/openmpi/lib/v7l/neon/vfp:/usr/lib/mpi/gcc/openmpi/lib/v7l/neon:/usr/lib/mpi/gcc/openmpi/lib/v7l/vfp:/usr/lib/mpi/gcc/openmpi/lib/v7l:/usr/lib/mpi/gcc/openmpi/lib/neon/vfp:/usr/lib/mpi/gcc/openmpi/lib/neon:/usr/lib/mpi/gcc/openmpi/lib/vfp:/usr/lib/mpi/gcc/openmpi/lib (LD_LIBRARY_PATH) 14279: trying file=/usr/lib/mpi/gcc/openmpi/lib/tls/v7l/neon/vfp/libhamlib.so.2 14279: trying file=/usr/lib/mpi/gcc/openmpi/lib/tls/v7l/neon/libhamlib.so.2 14279: trying file=/usr/lib/mpi/gcc/openmpi/lib/tls/v7l/vfp/libhamlib.so.2 14279: trying file=/usr/lib/mpi/gcc/openmpi/lib/tls/v7l/libhamlib.so.2 14279: trying file=/usr/lib/mpi/gcc/openmpi/lib/tls/neon/vfp/libhamlib.so.2 14279: trying file=/usr/lib/mpi/gcc/openmpi/lib/tls/neon/libhamlib.so.2 14279: trying file=/usr/lib/mpi/gcc/openmpi/lib/tls/vfp/libhamlib.so.2 14279: trying file=/usr/lib/mpi/gcc/openmpi/lib/tls/libhamlib.so.2 14279: trying file=/usr/lib/mpi/gcc/openmpi/lib/v7l/neon/vfp/libhamlib.so.2 14279: trying file=/usr/lib/mpi/gcc/openmpi/lib/v7l/neon/libhamlib.so.2 14279: trying file=/usr/lib/mpi/gcc/openmpi/lib/v7l/vfp/libhamlib.so.2 14279: trying file=/usr/lib/mpi/gcc/openmpi/lib/v7l/libhamlib.so.2 14279: trying file=/usr/lib/mpi/gcc/openmpi/lib/neon/vfp/libhamlib.so.2 14279: trying file=/usr/lib/mpi/gcc/openmpi/lib/neon/libhamlib.so.2 14279: trying file=/usr/lib/mpi/gcc/openmpi/lib/vfp/libhamlib.so.2 14279: trying file=/usr/lib/mpi/gcc/openmpi/lib/libhamlib.so.2 14279: search cache=/etc/ld.so.cache 14279: search path=/lib/tls/v7l/neon/vfp:/lib/tls/v7l/neon:/lib/tls/v7l/vfp:/lib/tls/v7l:/lib/tls/neon/vfp:/lib/tls/neon:/lib/tls/vfp:/lib/tls:/lib/v7l/neon/vfp:/lib/v7l/neon:/lib/v7l/vfp:/lib/v7l:/lib/neon/vfp:/lib/neon:/lib/vfp:/lib:/usr/lib/tls/v7l/neon/vfp:/usr/lib/tls/v7l/neon:/usr/lib/tls/v7l/vfp:/usr/lib/tls/v7l:/usr/lib/tls/neon/vfp:/usr/lib/tls/neon:/usr/lib/tls/vfp:/usr/lib/tls:/usr/lib/v7l/neon/vfp:/usr/lib/v7l/neon:/usr/lib/v7l/vfp:/usr/lib/v7l:/usr/lib/neon/vfp:/usr/lib/neon:/usr/lib/vfp:/usr/lib (system search path) 14279: trying file=/lib/tls/v7l/neon/vfp/libhamlib.so.2 14279: trying file=/lib/tls/v7l/neon/libhamlib.so.2 14279: trying file=/lib/tls/v7l/vfp/libhamlib.so.2 14279: trying file=/lib/tls/v7l/libhamlib.so.2 14279: trying file=/lib/tls/neon/vfp/libhamlib.so.2 14279: trying file=/lib/tls/neon/libhamlib.so.2 14279: trying file=/lib/tls/vfp/libhamlib.so.2 14279: trying file=/lib/tls/libhamlib.so.2 14279: trying file=/lib/v7l/neon/vfp/libhamlib.so.2 14279: trying file=/lib/v7l/neon/libhamlib.so.2 14279: trying file=/lib/v7l/vfp/libhamlib.so.2 14279: trying file=/lib/v7l/libhamlib.so.2 14279: trying file=/lib/neon/vfp/libhamlib.so.2 14279: trying file=/lib/neon/libhamlib.so.2 14279: trying file=/lib/vfp/libhamlib.so.2 14279: trying file=/lib/libhamlib.so.2 14279: trying file=/usr/lib/tls/v7l/neon/vfp/libhamlib.so.2 14279: trying file=/usr/lib/tls/v7l/neon/libhamlib.so.2 14279: trying file=/usr/lib/tls/v7l/vfp/libhamlib.so.2 14279: trying file=/usr/lib/tls/v7l/libhamlib.so.2 14279: trying file=/usr/lib/tls/neon/vfp/libhamlib.so.2 14279: trying file=/usr/lib/tls/neon/libhamlib.so.2 14279: trying file=/usr/lib/tls/vfp/libhamlib.so.2 14279: trying file=/usr/lib/tls/libhamlib.so.2 14279: trying file=/usr/lib/v7l/neon/vfp/libhamlib.so.2 14279: trying file=/usr/lib/v7l/neon/libhamlib.so.2 14279: trying file=/usr/lib/v7l/vfp/libhamlib.so.2 14279: trying file=/usr/lib/v7l/libhamlib.so.2 14279: trying file=/usr/lib/neon/vfp/libhamlib.so.2 14279: trying file=/usr/lib/neon/libhamlib.so.2 14279: trying file=/usr/lib/vfp/libhamlib.so.2 14279: trying file=/usr/lib/libhamlib.so.2 14279: rigctl: error while loading shared libraries: libhamlib.so.2: cannot open shared object file: No such file or directory Regards Sid.
Still no answer in 4 weeks and a day as to why /usr/lib and /usr/local/lib are not searched. Regards Sid. -- Sid Boyce ... Hamradio License G3VBV, Licensed Private Pilot Emeritus IBM/Amdahl Mainframes and Sun/Fujitsu Servers Tech Support Senior Staff Specialist, Cricket Coach Microsoft Windows Free Zone - Linux used for all Computing Tasks -- To unsubscribe, e-mail: opensuse-arm+unsubscribe@opensuse.org To contact the owner, e-mail: opensuse-arm+owner@opensuse.org
Could you please test the packages in home:Andreas_Schwab:branches:openSUSE:12.3:Update/glibc? Thanks, Andreas. -- Andreas Schwab, SUSE Labs, schwab@suse.de GPG Key fingerprint = 0196 BAD8 1CE9 1970 F4BE 1748 E4D4 88E3 0EEA B9D7 "And now for something completely different." -- To unsubscribe, e-mail: opensuse-arm+unsubscribe@opensuse.org To contact the owner, e-mail: opensuse-arm+owner@opensuse.org
On 18/05/13 22:07, Sid Boyce wrote:
On 17/04/13 12:06, Sid Boyce wrote:
On 17/04/13 10:46, Andreas Schwab wrote:
Please run the binary with LD_DEBUG=libs:files.
Andreas.
ODROID-X:/3/ODROID-X # LD_DEBUG=libs:files rigctl -l 14279: 14279: file=libhamlib.so.2 [0]; needed by rigctl [0] 14279: find library=libhamlib.so.2 [0]; searching 14279: search path=/usr/lib/mpi/gcc/openmpi/lib/tls/v7l/neon/vfp:/usr/lib/mpi/gcc/openmpi/lib/tls/v7l/neon:/usr/lib/mpi/gcc/openmpi/lib/tls/v7l/vfp:/usr/lib/mpi/gcc/openmpi/lib/tls/v7l:/usr/lib/mpi/gcc/openmpi/lib/tls/neon/vfp:/usr/lib/mpi/gcc/openmpi/lib/tls/neon:/usr/lib/mpi/gcc/openmpi/lib/tls/vfp:/usr/lib/mpi/gcc/openmpi/lib/tls:/usr/lib/mpi/gcc/openmpi/lib/v7l/neon/vfp:/usr/lib/mpi/gcc/openmpi/lib/v7l/neon:/usr/lib/mpi/gcc/openmpi/lib/v7l/vfp:/usr/lib/mpi/gcc/openmpi/lib/v7l:/usr/lib/mpi/gcc/openmpi/lib/neon/vfp:/usr/lib/mpi/gcc/openmpi/lib/neon:/usr/lib/mpi/gcc/openmpi/lib/vfp:/usr/lib/mpi/gcc/openmpi/lib (LD_LIBRARY_PATH) 14279: trying file=/usr/lib/mpi/gcc/openmpi/lib/tls/v7l/neon/vfp/libhamlib.so.2 14279: trying file=/usr/lib/mpi/gcc/openmpi/lib/tls/v7l/neon/libhamlib.so.2 14279: trying file=/usr/lib/mpi/gcc/openmpi/lib/tls/v7l/vfp/libhamlib.so.2 14279: trying file=/usr/lib/mpi/gcc/openmpi/lib/tls/v7l/libhamlib.so.2 14279: trying file=/usr/lib/mpi/gcc/openmpi/lib/tls/neon/vfp/libhamlib.so.2 14279: trying file=/usr/lib/mpi/gcc/openmpi/lib/tls/neon/libhamlib.so.2 14279: trying file=/usr/lib/mpi/gcc/openmpi/lib/tls/vfp/libhamlib.so.2 14279: trying file=/usr/lib/mpi/gcc/openmpi/lib/tls/libhamlib.so.2 14279: trying file=/usr/lib/mpi/gcc/openmpi/lib/v7l/neon/vfp/libhamlib.so.2 14279: trying file=/usr/lib/mpi/gcc/openmpi/lib/v7l/neon/libhamlib.so.2 14279: trying file=/usr/lib/mpi/gcc/openmpi/lib/v7l/vfp/libhamlib.so.2 14279: trying file=/usr/lib/mpi/gcc/openmpi/lib/v7l/libhamlib.so.2 14279: trying file=/usr/lib/mpi/gcc/openmpi/lib/neon/vfp/libhamlib.so.2 14279: trying file=/usr/lib/mpi/gcc/openmpi/lib/neon/libhamlib.so.2 14279: trying file=/usr/lib/mpi/gcc/openmpi/lib/vfp/libhamlib.so.2 14279: trying file=/usr/lib/mpi/gcc/openmpi/lib/libhamlib.so.2 14279: search cache=/etc/ld.so.cache 14279: search path=/lib/tls/v7l/neon/vfp:/lib/tls/v7l/neon:/lib/tls/v7l/vfp:/lib/tls/v7l:/lib/tls/neon/vfp:/lib/tls/neon:/lib/tls/vfp:/lib/tls:/lib/v7l/neon/vfp:/lib/v7l/neon:/lib/v7l/vfp:/lib/v7l:/lib/neon/vfp:/lib/neon:/lib/vfp:/lib:/usr/lib/tls/v7l/neon/vfp:/usr/lib/tls/v7l/neon:/usr/lib/tls/v7l/vfp:/usr/lib/tls/v7l:/usr/lib/tls/neon/vfp:/usr/lib/tls/neon:/usr/lib/tls/vfp:/usr/lib/tls:/usr/lib/v7l/neon/vfp:/usr/lib/v7l/neon:/usr/lib/v7l/vfp:/usr/lib/v7l:/usr/lib/neon/vfp:/usr/lib/neon:/usr/lib/vfp:/usr/lib (system search path) 14279: trying file=/lib/tls/v7l/neon/vfp/libhamlib.so.2 14279: trying file=/lib/tls/v7l/neon/libhamlib.so.2 14279: trying file=/lib/tls/v7l/vfp/libhamlib.so.2 14279: trying file=/lib/tls/v7l/libhamlib.so.2 14279: trying file=/lib/tls/neon/vfp/libhamlib.so.2 14279: trying file=/lib/tls/neon/libhamlib.so.2 14279: trying file=/lib/tls/vfp/libhamlib.so.2 14279: trying file=/lib/tls/libhamlib.so.2 14279: trying file=/lib/v7l/neon/vfp/libhamlib.so.2 14279: trying file=/lib/v7l/neon/libhamlib.so.2 14279: trying file=/lib/v7l/vfp/libhamlib.so.2 14279: trying file=/lib/v7l/libhamlib.so.2 14279: trying file=/lib/neon/vfp/libhamlib.so.2 14279: trying file=/lib/neon/libhamlib.so.2 14279: trying file=/lib/vfp/libhamlib.so.2 14279: trying file=/lib/libhamlib.so.2 14279: trying file=/usr/lib/tls/v7l/neon/vfp/libhamlib.so.2 14279: trying file=/usr/lib/tls/v7l/neon/libhamlib.so.2 14279: trying file=/usr/lib/tls/v7l/vfp/libhamlib.so.2 14279: trying file=/usr/lib/tls/v7l/libhamlib.so.2 14279: trying file=/usr/lib/tls/neon/vfp/libhamlib.so.2 14279: trying file=/usr/lib/tls/neon/libhamlib.so.2 14279: trying file=/usr/lib/tls/vfp/libhamlib.so.2 14279: trying file=/usr/lib/tls/libhamlib.so.2 14279: trying file=/usr/lib/v7l/neon/vfp/libhamlib.so.2 14279: trying file=/usr/lib/v7l/neon/libhamlib.so.2 14279: trying file=/usr/lib/v7l/vfp/libhamlib.so.2 14279: trying file=/usr/lib/v7l/libhamlib.so.2 14279: trying file=/usr/lib/neon/vfp/libhamlib.so.2 14279: trying file=/usr/lib/neon/libhamlib.so.2 14279: trying file=/usr/lib/vfp/libhamlib.so.2 14279: trying file=/usr/lib/libhamlib.so.2 14279: rigctl: error while loading shared libraries: libhamlib.so.2: cannot open shared object file: No such file or directory Regards Sid.
Still no answer in 4 weeks and a day as to why /usr/lib and /usr/local/lib are not searched. Regards Sid.
Posted back in mid May and it's still not addressed. The ODROID-X openSUSE image was issued as ver. 12.2. When I upgraded to ver. 12.3 strange things started to happen. * It never searched in /usr/local/lib for package libraries. * ghpsdr3-alex failed to configure saying the platform was not ARM. I don't know who provided the 12.2 ODROID-X image but it seems no further development has taken place and updates from the 12.3 repos are not quite compatible. Is 12.3 only for Origen, Arndale, Raspberry Pi, Beaglebone, etc. but not for ODROID? Regards Sid. -- Sid Boyce ... Hamradio License G3VBV, Licensed Private Pilot Emeritus IBM/Amdahl Mainframes and Sun/Fujitsu Servers Tech Support Senior Staff Specialist, Cricket Coach Microsoft Windows Free Zone - Linux used for all Computing Tasks -- To unsubscribe, e-mail: opensuse-arm+unsubscribe@opensuse.org To contact the owner, e-mail: opensuse-arm+owner@opensuse.org
Sid Boyce <sboyce@blueyonder.co.uk> writes:
Posted back in mid May and it's still not addressed.
Read your mail. Andreas. -- Andreas Schwab, SUSE Labs, schwab@suse.de GPG Key fingerprint = 0196 BAD8 1CE9 1970 F4BE 1748 E4D4 88E3 0EEA B9D7 "And now for something completely different." -- To unsubscribe, e-mail: opensuse-arm+unsubscribe@opensuse.org To contact the owner, e-mail: opensuse-arm+owner@opensuse.org
On 13/06/13 12:55, Andreas Schwab wrote:
Sid Boyce <sboyce@blueyonder.co.uk> writes:
Posted back in mid May and it's still not addressed. Read your mail.
Andreas.
Apologies Andreas, Missed that. Presumably the repo is:- [home_AndreasSchwab] name=AndreasSchwab's Home Project (12.3) type=rpm-md baseurl=http://download.opensuse.org/repositories/home:/AndreasSchwab/12.3/ gpgcheck=1 gpgkey=http://download.opensuse.org/repositories/home:/AndreasSchwab/12.3/repodata/... enabled=1 Regards Sid. -- Sid Boyce ... Hamradio License G3VBV, Licensed Private Pilot Emeritus IBM/Amdahl Mainframes and Sun/Fujitsu Servers Tech Support Senior Staff Specialist, Cricket Coach Microsoft Windows Free Zone - Linux used for all Computing Tasks -- To unsubscribe, e-mail: opensuse-arm+unsubscribe@opensuse.org To contact the owner, e-mail: opensuse-arm+owner@opensuse.org
On 13/06/13 14:20, Sid Boyce wrote:
On 13/06/13 12:55, Andreas Schwab wrote:
Sid Boyce <sboyce@blueyonder.co.uk> writes:
Posted back in mid May and it's still not addressed. Read your mail.
Andreas.
Apologies Andreas, Missed that. Presumably the repo is:- [home_AndreasSchwab] name=AndreasSchwab's Home Project (12.3) type=rpm-md baseurl=http://download.opensuse.org/repositories/home:/AndreasSchwab/12.3/
gpgcheck=1 gpgkey=http://download.opensuse.org/repositories/home:/AndreasSchwab/12.3/repodata/...
enabled=1
Regards Sid.
-- Sid Boyce ... Hamradio License G3VBV, Licensed Private Pilot Emeritus IBM/Amdahl Mainframes and Sun/Fujitsu Servers Tech Support Senior Staff Specialist, Cricket Coach Microsoft Windows Free Zone - Linux used for all Computing Tasks -- To unsubscribe, e-mail: opensuse-arm+unsubscribe@opensuse.org To contact the owner, e-mail: opensuse-arm+owner@opensuse.org
On 13/06/13 16:07, Sid Boyce wrote:
On 13/06/13 14:20, Sid Boyce wrote:
On 13/06/13 12:55, Andreas Schwab wrote:
Sid Boyce <sboyce@blueyonder.co.uk> writes:
Posted back in mid May and it's still not addressed. Read your mail.
Andreas.
Apologies Andreas, Missed that. Presumably the repo is:- [home_AndreasSchwab] name=AndreasSchwab's Home Project (12.3) type=rpm-md baseurl=http://download.opensuse.org/repositories/home:/AndreasSchwab/12.3/
gpgcheck=1 gpgkey=http://download.opensuse.org/repositories/home:/AndreasSchwab/12.3/repodata/...
enabled=1
Regards Sid.
No Update directory found and no sign of glibc. zypper dup updated only automake. Regards Sid. -- Sid Boyce ... Hamradio License G3VBV, Licensed Private Pilot Emeritus IBM/Amdahl Mainframes and Sun/Fujitsu Servers Tech Support Senior Staff Specialist, Cricket Coach Microsoft Windows Free Zone - Linux used for all Computing Tasks -- To unsubscribe, e-mail: opensuse-arm+unsubscribe@opensuse.org To contact the owner, e-mail: opensuse-arm+owner@opensuse.org
This is probably <http://sourceware.org/bugzilla/show_bug.cgi?id=15006>. Andreas. -- Andreas Schwab, SUSE Labs, schwab@suse.de GPG Key fingerprint = 0196 BAD8 1CE9 1970 F4BE 1748 E4D4 88E3 0EEA B9D7 "And now for something completely different." -- To unsubscribe, e-mail: opensuse-arm+unsubscribe@opensuse.org To contact the owner, e-mail: opensuse-arm+owner@opensuse.org
participants (2)
-
Andreas Schwab
-
Sid Boyce