Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>From <a href="http://subclipse.tigris.org/wiki/JavaHL#head-bb1dd50f9ec2f0d8c32246430c00e237d27a04fe" rel="nofollow">Subclipse: Wiki: JavaHL</a></p> <p><strong>How do I get JavaHL?</strong></p> <ul> <li>In Debian/Ubuntu the package name is <code>libsvn-java</code> so you can just run this command to install the library:<br> <ul> <li><code>$ apt-get install libsvn-java # Use sudo in Ubuntu</code></li> </ul></li> <li>Next, find the path where the JavaHL library is installed, as you will need to know this path for the following instructions: <ul> <li><code>$ find / -name libsvnjavahl-1.so # Use sudo in Ubuntu</code></li> </ul></li> </ul> <p><em>Although the library is installed, you still have to tell Java (when used for Eclipse) where to find it. The JVM on Linux does not look in a lot of the standard locations to find the libraries. (This could obviously change in the future.) For example, 32-bit Debian/Ubuntu uses a standard location of /usr/lib/jni for libraries to be used from Java. However, the Oracle JVM does not currently look in this location. The easiest way to tell Java where to find the JavaHL library is to specify the following when starting the JVM:</em></p> <pre><code>-Djava.library.path=&lt;/path/to/library&gt; </code></pre> <p>Example:</p> <pre><code>-Djava.library.path=/usr/lib/jni </code></pre> <p><em>Eclipse provides its own mechanism for providing this setting. Eclipse comes with a file named eclipse.ini. This file is looked at when the Eclipse launcher starts the JVM and appends settings to the JVM when launching it. Specifically, you should see a line that says "-vmargs". Add a newline after this line and insert the above line to pass the setting the JVM needs. Each argument needs to be on its own line, so be sure to add a new line and then put the entire string above on its own line.</em> </p> <p>Here is an example of this file from Eclipse 3.4:</p> <pre><code>-showsplash org.eclipse.platform -framework plugins/org.eclipse.osgi_3.4.0.v20080605-1900.jar -vmargs -Djava.library.path=/opt/CollabNet_Subversion/lib -Dosgi.requiredJavaVersion=1.5 -Xms40m -Xmx512m -XX:MaxPermSize=256m </code></pre>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload