mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-24 09:30:52 +07:00
ver_linux: libcpp, fix missing output
Neither 'libg++.so', nor 'libstdc++.so' were found where the current implementation expects them to be found in the distros below. Gentoo Linux Debian 6.0.10 Oracle Linux Server release 7.1 Which results in zero ouput generated. The proposed implementation relies on 'ldconfig' to locate the libraries in question. 'Sed' is used to do the text processing. Signed-off-by: Alexander Kapshuk <alexander.kapshuk@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
1e5f739c61
commit
53494ba9da
@ -121,9 +121,18 @@ awk '/^ldd/{
|
||||
substr($0,RSTART,RLENGTH))
|
||||
}'
|
||||
|
||||
ls -l /usr/lib/libg++.so /usr/lib/libstdc++.so 2>/dev/null | awk -F. \
|
||||
'{print "Linux C++ Library " $4"."$5"."$6}'
|
||||
|
||||
libcpp=`ldconfig -p 2>/dev/null |
|
||||
awk '/(libg|stdc)[+]+\.so/ {
|
||||
print $NF
|
||||
exit
|
||||
}
|
||||
'`
|
||||
test -r "$libcpp" &&
|
||||
ls -l $libcpp |
|
||||
sed '
|
||||
s!.*so\.!!
|
||||
s!^!Linux C++ Library\t!
|
||||
'
|
||||
ps --version 2>&1 | grep version | awk \
|
||||
'NR==1{print "Procps ", $NF}'
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user