It worked for me.
On a not quite related note:
Matrix multiplication......Gmp.mpz conversion failed (Gmp.bignum not loaded). /usr/local/pike/7.5.3/lib/modules/Tools.pmod/Shoot.pmod/MatrixMult.pike:21: Tools.Shoot.MatrixMult()->test(-1) /usr/local/pike/7.5.3/lib/modules/Tools.pmod/Shoot.pmod/MatrixMult.pike:26: Tools.Shoot.MatrixMult()->perform() /usr/local/pike/7.5.3/lib/modules/Tools.pmod/Shoot.pmod/module.pmod:129: Tools.Shoot->_shoot("MatrixMult") -:3: -()->run(1,({"/usr/local/pike/7.5.3/bin/pike"}),mapping[34]) failed to spawn pike or run test
I can use Gmp.mpz (or Gmp.bignum) without trouble if I just start the pike, though.
/ Per Hedbor ()
Previous text:
2003-02-07 22:43: Subject: Re: gcc/icc
You may or may not need to patch your bits/byteswap.h. On my Linux/glibc you needed to change this "16" to "32":
vv
# define __bswap_16(x) \ (__extension__ \ ({ register unsigned int __x = (x); __bswap_constant_32 (__x); }))
(Just a tip for everyone who wants to get icc working. Newer/CVS versions of glibc doesn't have this problem.)
/ Mirar