Subclipse and JavaHL installation headache

前端 未结 10 1344
天命终不由人
天命终不由人 2020-12-12 14:37

I\'ve run into problems installing the latest Subclipse plug in. I saw this post: subclipse: Unable to load default SVN Client, but the answer appears to be specific for Sub

10条回答
  •  半阙折子戏
    2020-12-12 15:22

    To fix this, just install the package with:

    sudo apt-get install libsvn-java
    

    You must config eclipse.inito add path /jni

    For example:

    -Djava.library.path=/usr/lib/x86_64-linux-gnu/jni
    

    On Ubuntu-13.04 32bits you need to edit the file:

    $ sudo vi /usr/lib/eclipse/eclipse.ini
    

    And add the path:

    -Djava.library.path=/usr/lib/i386-linux-gnu/jni
    

    From this blog

提交回复
热议问题