mirror of
https://git.yoctoproject.org/poky
synced 2026-09-20 03:49:32 +02:00
oeqa: Set LD_LIBRARY_PATH when executing native commands
Some commands like to look for libraries at runtime manually (e.g. Python's ctype.utils.find_library() function). For this to work properly, the libraries in the native sysroot must be findable. To accomplish this, set LD_LIBRARY_PATH to search library paths in the native sysroot. (From OE-Core rev: 3a7305bdfded3c8988484c3f430110cc121123b5) Signed-off-by: Joshua Watt <JPEWhacker@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
569687083f
commit
a0ce9a8bbc
@@ -172,8 +172,11 @@ def runCmd(command, ignore_status=False, timeout=None, assert_error=True,
|
|||||||
if native_sysroot:
|
if native_sysroot:
|
||||||
extra_paths = "%s/sbin:%s/usr/sbin:%s/usr/bin" % \
|
extra_paths = "%s/sbin:%s/usr/sbin:%s/usr/bin" % \
|
||||||
(native_sysroot, native_sysroot, native_sysroot)
|
(native_sysroot, native_sysroot, native_sysroot)
|
||||||
|
extra_libpaths = "%s/lib:%s/usr/lib" % \
|
||||||
|
(native_sysroot, native_sysroot)
|
||||||
nenv = dict(options.get('env', os.environ))
|
nenv = dict(options.get('env', os.environ))
|
||||||
nenv['PATH'] = extra_paths + ':' + nenv.get('PATH', '')
|
nenv['PATH'] = extra_paths + ':' + nenv.get('PATH', '')
|
||||||
|
nenv['LD_LIBRARY_PATH'] = extra_libpaths + ':' + nenv.get('LD_LIBRARY_PATH', '')
|
||||||
options['env'] = nenv
|
options['env'] = nenv
|
||||||
|
|
||||||
cmd = Command(command, timeout=timeout, output_log=output_log, **options)
|
cmd = Command(command, timeout=timeout, output_log=output_log, **options)
|
||||||
|
|||||||
Reference in New Issue
Block a user