Eclipse executable launcher error: Unable to locate companion shared library

后端 未结 30 2843
猫巷女王i
猫巷女王i 2020-11-29 18:49

I had Eclipse Indigo installed on my computer with the Android plugin and it was working perfectly for about two weeks. Today, I updated java and quicktime then restarted my

30条回答
  •  情歌与酒
    2020-11-29 19:19

    I just ran into this myself and found that, indeed, as one post above stated: using cygwin and gunzip or unzip to set up your eclipse environment the permissions on the .exe and .dll files will be incorrect and the JVM will not run them properly.

    Quick solution:

    
    #switch to the eclipse target folder
    cd /cygdrive/c/Program\ Files\ \(x86\) #or wherever you put eclipse
    find ./ -regextype posix-extended -mindepth 1 -type f -regex ".*\.exe|.*\.dll" |\
    xargs chmod -v 750
    

提交回复
热议问题