[Solved] Speed up Eclipse CDT start up? [closed]

This answer about configuring the ecilpse.ini file can help you: What are the best JVM settings for Eclipse? The configuration I have has increased a bit the overal performance, but at the cost of slightly slower startup -startup plugins/org.eclipse.equinox.launcher_1.3.0.v20120522-1813.jar –launcher.library plugins/org.eclipse.equinox.launcher.win32.win32.x86_64_1.1.200.v20120913-144807 -product org.eclipse.epp.package.jee.product –launcher.defaultAction openFile –launcher.XXMaxPermSize 256M -nosplash –launcher.XXMaxPermSize 256m –launcher.defaultAction openFile -vmargs -server -Dosgi.requiredJavaVersion=1.7 … Read more

[Solved] Cannot use array with GCC

Because <array> got indirectly included from somewhere and you made the mistake of using namespace std, “array” in ErrorMessage refers to that name in the std namespace. That is a class template, not a type – hence the error message. Outside of value, its array is called value::array. (The typedef value::array array in value is … Read more