Posted by Alex on April 18, 2008 at 11:19:29:
In Reply to: Re: seward error message posted by Ignacio on April 15, 2008 at 09:16:35:
: : *** (S)-level message SORT2B003 ***
: : An inconsistency has been deteced
: : llVBin # lVRec
: I have encountered this error (or maybe a very similar one) when compiling with ifort in an Intel Xeon system. I found out it doesn't happen with -O0 or -O1 in the compile options, so what I did:
: ./configure -speed fast [other options]
: Edit src/util/Makefile and change -O3 into -O1 in FFLAGS
: make
:
: And now it works OK.
Thanks a lot! Indeed this recompilation with -O1 flag solved the problems. Now it is ok, though I would not think of such a solution.