Hi Joaquim,
I would like you to do some tests on that topic. Please try to comment out the lines:
Code: |
elif l.find('sse4a') != -1:
env['CCFLAGS'].extend(['-msse4a', ...
|
In the SConstruct file. If this has no impact, try to reduce the optimization level (assuming you are compiling debug=n) please change the line
Code: |
env['CCFLAGS'].extend(['-O3'])
|
to
Code: |
env['CCFLAGS'].extend(['-O2'])
|
It seems that one of these options does not like our code for the blitting routines. My CPU is missing the sse4a flag from your setup.
kind regards
Stefan