Reputation:
friends
It is an urgent problem'm in my flex command when compiling an application in Flex3 gives the error image attached.
ERROR: An out of memory error has occurred. Consult the "Running Eclipse" section of the read me file for information on preventing this kind of error in the future.
Upvotes: 0
Views: 2189
Reputation: 2181
By your description it seems you're having an out of memory error. If so, you have to increase the memory given to the java process.
To do this edit eclipse.ini file inside the eclipse folder and add the parameter -Xmx
with a value, example -Xmx1024m
which would allow Java to use up to 1Gb of memory.
You can also add this parameter to your JAVA_OPTS
Upvotes: 2