Re: [EMBOSS] Build -m32 on 64 bit host, problems

2011-06-27 Thread David Mathog
> Found it in configure. Ack, make that, "found it in _every_ configure". Rather than hand editing these, modified the lot of them to break the x86_64 test, so it will fail even if the strings are present (or use sed): find . | \ grep configure$ | extract -fmt 'extract -in [1,] -out /tmp/foo -r

[EMBOSS] Build -m32 on 64 bit host, problems

2011-06-27 Thread David Mathog
Trying again to compile Emboss 6.3.1. Attempting to build 32 bit versions as most of the target machines run that, however, the compiler is running on a 64 bit OS. Download 6.3.1, unpack, apply 1-4 patch. Then in top level: export CFLAGS="-march=athlon-mp -m32" ./configure --prefix=/usr/common

Re: [EMBOSS] Build -m32 on 64 bit host, problems

2011-06-27 Thread David Mathog
Found it in configure. There is a test to see if the compiling system is x86_64, but there doesn't seem to be anything there to see if the intent is to build 32 bit on that system. Chopped out that test and reran configure, which removed the -D__amd64__ from the makefiles. Compiling now. Regard