On Sunday 20 July 2008 14:01, Lukas Oboril wrote: > We can use $_arch in configure.sh and so on ... that variable is filled up > with valid contain now. > > For 32bit on both platorm $_arch="" is null (at this time in dude). I > think that should be worth to do something like this: on 32bit x86 > > $_arch="x86" on 32bit sparc > $_arch="sparc" (I have it my local copy and > after few test I'll push it to dude)
It'd be really nice to have an always-available flag for 64-bitness (safer than for i in $CFLAGS ; do echo $i ; done | grep -- -m64); with the current setup, test ! -z "$_arch" indicates 64-bitness while your proposed changes make that more complicated. Or should we consistently be using test ! -z "$_libsuffix" as a 64-bit test? [ade]
