Hi,
the file tests/GNUmakefile currently contains the lines
ifeq ($(ARCH), x86_64) SHLIBS += libtest32$(SHLIB_EXT) libtest2_32$(SHLIB_EXT) endif
As a result, building with -m32 will be tested on 64bit hosts. This can only work on multilib hosts, however; for others the test will fail.
Best regards,
Elias Pipping
On Sun, Jan 1, 2012 at 7:52 PM, Elias Pipping pipping@lavabit.com wrote:
the file tests/GNUmakefile currently contains the lines
ifeq ($(ARCH), x86_64) SHLIBS += libtest32$(SHLIB_EXT) libtest2_32$(SHLIB_EXT) endif
As a result, building with -m32 will be tested on 64bit hosts. This can only work on multilib hosts, however; for others the test will fail.
Right. What's a good way to test whether -m32 is available?