Speeding Up Eclipse on Mac OSX
Check out this great article: http://juca-cruz-utilities.blogspot.com/2013/06/how-to-speed-up-eclipse-on-mac-os-x.html
Run these commands sudo -i - login as root apt-get autoremove eclipse - unistall rm -r /usr/lib/eclipse - remove all config files apt-get install eclipse - reinstall
http://ubuntuforums.org/showthread.php?t=1412320
'for' loop initial declarations are only allowed in C99 modeAfter a little bit of research, in Eclipse, go to Project > Properties > C/C++ Build > Settings > GCC C Compiler > Miscellaneous > add "-std=c99" to the "Linker Flags" text field.
http://www.eclipse.org/forums/index.php?t=msg&goto=212981&
undefined reference to `sqrt'After a little bit of research, in Eclipse, go to Project > Properties > C/C++ Build > Settings > GCC C Linker > Miscellaneous > add "-lm" to the "Linker Flags" text field. That way it is properly linked to the project.
http://cboard.cprogramming.com/c-programming/88943-undefined-reference-sqrt.html