On Tue, 18 Jan 2011, Alexander B. Gedranovich wrote:
1) In attachment are outputs from
cat /proc/cpuinfo | grep sse
./configure
make
Thanks, very helpful. The problem seems to be that your installed
gcc is out of sync with your processor. The configure test for
SSE2 intrinsics is passing OK and gcc is happily allowing you to
compile with the -msse2 flag, but in fact the cpu has no sse2
support, so naturally the gretl binary is going to issue illegal
instructions.
I suppose (hope) this case is quite rare, in which case it can be
handled by --disable-sse2, but maybe we can put a more thorough
test for sse2 into the configure script.
Allin