Fixed by reordering. (icc has __int64 even on Linux, but doesn't have the corresponding limits (_I64_MAX & _I64_MIN)).
/ Henrik Grubbström (Lysator)
Previous text:
2003-04-04 10:50: Subject: icc & INT64
I see that icc no longer can compile long-long-int Pike's.
[...]Gmp/mpz_glue.c(207): error: identifier "_I64_MIN" is undefined *i = MIN_INT64; ^ [...]Gmp/mpz_glue.c(210): error: identifier "_I64_MIN" is undefined *i = neg ? MIN_INT64 : MAX_INT64; ^ [...]Gmp/mpz_glue.c(210): error: identifier "_I64_MAX" is undefined *i = neg ? MIN_INT64 : MAX_INT64; ^
Did anyone do anything to how MAX & MIN_INT64 was defined?
/ Mirar