Error when eclipse is packaged: GC Overhead limit exceeded eclipse
The reason is that the eclipse default configuration memory is too small to change the Eclipse.ini file under the Eclipse installation folder.
Eclipse.ini default files are as follows:
-startup
Plugins/org.eclipse.equinox.launcher_1.3.0.v20140415-2008.jar
--launcher.library
plugins/org.eclipse.equinox.launcher.win32.win32.x86_64_1.1.200.v20140603-1326
-product
Org.eclipse.epp.package.standard.product
--launcher.defaultaction
OpenFile
--launcher. Xxmaxpermsize
256M
-showsplash
Org.eclipse.platform
--launcher. Xxmaxpermsize
256m
--launcher.defaultaction
OpenFile
--launcher.appendvmargs
-vmargs
-dosgi.requiredjavaversion=1.7
-xms40m
-xmx512m
Modify the following:
-xms512m
-xmx1024m
The first is the smallest initialization memory and the second one is the largest occupied memory
can also be added-xx:maxpermsize=1024m This means that the file has been compiled to occupy the maximum memory, change the above parameter restart Eclipse,ok