Hi All,

The newest released version of gcc implements the flag -fstrict-overflow,
which is on by default. In C this means that signed integers are assumed to
not overflow, as by the strict C standard only unsigned integers use modular
arithmetic and wrap. This may affect numpy because currently signed integers
wrap and don't raise a flag on overflow. We may need to unset this flag to
maintain current behaviour.

Chuck
_______________________________________________
Numpy-discussion mailing list
[email protected]
http://projects.scipy.org/mailman/listinfo/numpy-discussion

Reply via email to