Re: [Rd] Tip for removing -c99 when compiling with icc

2008-12-18 Thread Kurt Hornik
> Prof Brian Ripley writes: > On Thu, 18 Dec 2008, Bjørn-Helge Mevik wrote: >> Dear developeRs, >> >> As of icc 10, the -c99 option is deprecated, and generates a lot of >> warnings when compiling R or R packages. >> >> If you use CC="icc -std=c99" instead of just CC="icc", R's configure >>

Re: [Rd] Tip for removing -c99 when compiling with icc

2008-12-18 Thread Prof Brian Ripley
On Thu, 18 Dec 2008, Bjørn-Helge Mevik wrote: Dear developeRs, As of icc 10, the -c99 option is deprecated, and generates a lot of warnings when compiling R or R packages. If you use CC="icc -std=c99" instead of just CC="icc", R's configure will not add the -c99 option, and the code seems to c

[Rd] Tip for removing -c99 when compiling with icc

2008-12-18 Thread Bjørn-Helge Mevik
Dear developeRs, As of icc 10, the -c99 option is deprecated, and generates a lot of warnings when compiling R or R packages. If you use CC="icc -std=c99" instead of just CC="icc", R's configure will not add the -c99 option, and the code seems to compile and run just fine. (Please don't hesitate