On Wed, May 05, 2021 at 08:56:58PM +0200, Gordon Bergling wrote:> Hi, > > I am currently try to build a custom 13-STABLE release for i386, build on > an amd64 system. According to release(7) the following command should > do the trick, but it fails with the following error message. > > $ doas sh release.sh -c i386/i386.conf > ld-elf32.so.1: Shared object "libedit.so.8" not found, required by "sh" > > Has anyone an idea what could cause this? >Do you have lib32 compatibility installed on the build host? I.e., do you have WITHOUT_LIB32 defined in your src.conf? Glen -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 833 bytes Desc: not available URL: <http://lists.freebsd.org/pipermail/freebsd-stable/attachments/20210505/ecc8751f/attachment.sig>
On Wed, May 05, 2021 at 07:02:42PM +0000, Glen Barber wrote:> On Wed, May 05, 2021 at 08:56:58PM +0200, Gordon Bergling wrote: > > Hi, > > > > I am currently try to build a custom 13-STABLE release for i386, build on > > an amd64 system. According to release(7) the following command should > > do the trick, but it fails with the following error message. > > > > $ doas sh release.sh -c i386/i386.conf > > ld-elf32.so.1: Shared object "libedit.so.8" not found, required by "sh" > > > > Has anyone an idea what could cause this? > > > > Do you have lib32 compatibility installed on the build host? I.e., do > you have WITHOUT_LIB32 defined in your src.conf? > > Glenlib32 compatibility should be installed, the src.conf of the buildsystem (recent 12-STABLE) only has the following entries defined: WITH_PIE=1 WITH_RETPOLINE=1 --Gordon