I am using Fedora12.

I have downloaded eclipse-cpp-galileo-SR1-linux-gtk.

I am using java version "1.6.0_18"

When I start eclipse, I get the following error dialog. What might be the issue?

Thanks.

Screenshot

(for those who cannot see tinypic.com, here is a imageshack.us one)

Screenshot bis

link|improve this question

Could you post your picture on imageshack.us ? tinypic.com is blocked at work, so I do not see your screenshot. – VonC Feb 25 '10 at 8:10
img29.imageshack.us/img29/43/screenshotbv.png Also, I get the following error when I try to start eclipse from the console besides the above error. /usr/java/jre1.6.0_18/bin/../lib/i386/client/libjvm.so: cannot enable executable stack as shared object requires: Permission denied – bdhar Feb 25 '10 at 8:22
feedback

1 Answer

up vote 5 down vote accepted

I used to see that message when there was any error in eclipse.ini.
Try using my eclipse.ini to see if that solve the problem.
In particular, check there is no extra space at the end of each line.

That being said, the error messsage

/usr/java/jre1.6.0_18/bin/../lib/i386/client/libjvm.so:  
  cannot enable executable stack as shared object requires: Permission denied

is probably the real issue here.

Check if this is not related to the fact that most applications are not permitted to run with an executable stack.
See this article.

This forum suggests:

#setsebool -P allow_execstack 1

After reading SELinux Reveals Bugs in other code and SELinux Reveals Bugs in other code., I then tried

#execstack -c /usr/lib/jvm/java-1.6.0-openjdk-1.6.0.0/jre/lib/i386/client/libjvm.so

and this seemed to work also.

link|improve this answer
3  
setsebool allow_execstack 1 worked for me – bdhar Feb 25 '10 at 9:34
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.