Re: Issue with Dynamic Linker and Python Dependency in Yocto SDK Setup
"Nicolas Wirth" <[email protected]>
| Newsgroups | org.yoctoproject.lists.poky |
|---|---|
| Message-ID | <[email protected]> |
> > relocating tools is a necessary part of SDK self-installer, so it can > edit the binaries to use correct libs as SDK expects. You may explore > using buildtools-tarball which can provide python perhaps > https://downloads.yoctoproject.org/releases/yocto/yocto-5.0/buildtools/ We found a workaround using patchelf to change the dynamic linker of the SDK to the current directory. Then, we create a symlink to the toolchain's dynamic linker. By setting LD_LIBRARY_PATH , we can use the toolchain as intended without using the installation script or Python. This is our current solution. Do you see any potential issues or a better way to achieve this?