Multiarch - install armhfp libraries on x86_64

General support questions
Post Reply
kolli
Posts: 1
Joined: 2018/08/28 19:16:07

Multiarch - install armhfp libraries on x86_64

Post by kolli » 2018/08/28 19:29:07

Hi,

I'm trying to run an arm-application on a x86_64 CentOS.
So far, I compiled qemu-user-static and configured /proc/sys/fs/binfmt_misc/register to use it for arm executables.
Execution is done, but missing arm libraries:

/lib/ld-linux-armhf.so.3: No such file or directory


yum install libstdc++.armhfp

doesn't solve the issue.
When searching for multiarch on centos, I just find examples for how to use i386 on x86_64, but not for armhfp:

echo multilib_policy=all >> /etc/yum.conf
yum update
yum install libstdc++.i386

This conforms with

yum whatprovides libstdc++

as it shows both i386 and x86_64 versions.

So for armhfp, I probably would need an additional repository for that arch or do some other configuration.
Can someone give me a hint, how to proceed?

Post Reply