Forum Discussion
Altera_Forum
Honored Contributor
13 years agoNios II Software Build Tools for Eclipse - c99 mode
Hi every one! I'm using Quartus 11.0 sp1 and Nios II Software Build Tools for Eclipse with DE2-70 Altera board. How can I configure "mingw nios ii gcc4" in eclipse to use the c99 mode? (I ...
Altera_Forum
Honored Contributor
13 years agoWhy do you need to explicitly specify -std=c99?
gcc tends to support most of c99 without it. Specifying -std=c99 also removes some of the gcc builtins - like alloca(), which can only really be implemeted by the compiler.