Hi Alistair, Just an idea: One alternative could be to use patchelf [1] to modify the dynamic library path in an existing binary. My understanding is that this method is very robust and widely used. [1]: https://nixos.org/patchelf.html On 5 April 2017 at 09:14, Alistair Grant <akgrant0710@gmail.com> wrote:
Hi All,
I'm still working on getting Pharo packaged with snapcraft. The latest hurdle is that 32 bit applications won't load correctly because the snapcraft environment means that ld-linux.so.2 isn't in the expected location.
My understanding is that adding the appropriate --dynamic-linker flag should solve the problem, defining:
export LDFLAGS="-Wl,--dynamic-linker=/snap/pharo/x1/lib/ld-linux.so.2"
successfully builds, but the pharo executable still has the default location:
$ strings pharo-vm/pharo | grep ld-linux /lib/ld-linux.so.2
Can someone point me to where I should modify the build scipt(s) so I can set --dynamic-linker appropriately?
Thanks! Alistair