So you had a pimped out eclipse.ini file and for some odd reason in the world, eclipse.ini is missing in action after one of the numerous updates, you try to put it where it was, but none of the options you pass it seem to have an effect.
Here’s what I did
After I gave up on reading the documentation on what the hell happened to eclipse.ini and why it’s not having any effect on my eclipse, I just created my own eclipse launcher.
Here’s what it has inside:
[bash]#!/bin/bash
./eclipse -vmargs -XX:MaxPermSize=512M-Xms512m -Xmx1024m -XX:+UseParallelGC -XX:PermSize=256M
[/bash]