Closed Silex closed 4 years ago
By default uname -m returns x86_64 even on i386 containers.
uname -m
Using linux32 ./configure fixes the problem.
linux32 ./configure
The trick is to use ./configure --build="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)" instead of linux32 ./configure
./configure --build="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)"
By default
uname -m
returns x86_64 even on i386 containers.Using
linux32 ./configure
fixes the problem.