mirror of
https://github.com/thead-yocto-mirror/meta-external-toolchain
synced 2026-09-16 12:13:08 +02:00
13 lines
394 B
PHP
13 lines
394 B
PHP
def get_external_libc_version(d):
|
|
sopattern = os.path.join(d.getVar('base_libdir', True), 'libc-*.so')
|
|
found_paths = oe.external.find_sysroot_files([sopattern], d)
|
|
if found_paths:
|
|
so_paths = found_paths[0]
|
|
if so_paths:
|
|
soname = os.path.basename(so_paths[0])
|
|
return soname[5:-3]
|
|
|
|
return 'UNKNOWN'
|
|
|
|
PV := "${@get_external_libc_version(d)}"
|