天天看点

SVN环境导致Eclipse启动失败

在启动Eclipse的时候发生以下的异常

#

# An unexpected error has been detected by HotSpot Virtual Machine:

#

#  EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x05037c0c, pid=1892, tid=2400

#

# Java VM: Java HotSpot(TM) Client VM (1.5.0-b64 mixed mode, sharing)

# Problematic frame:

# C  [libapr-1.dll+0x7c0c]

#

最后在找到一篇文章:

http://subclipse.tigris.org/serv ... ers&msgNo=10234

里面说是由于安装svn1.4.4和apache2.2时,一个环境变量所导致的,原文如下:

Subclipse can crash on Windows if you have the environment variable

APR_ICONV_PATH set and it is pointing at a set of libraries that were

built against Apache 2.2.  If that is the case, change the environment

variable name to APR_ICONV1_PATH and that will fix the problem.  The

libraries from 2.2 will look for the variable with the "1" in it first

anyway.  So this is a proper change to make.

If you want to be thorough, you could download the zip file for

Subversion 1.4.3, and point the APR_ICONV_PATH variable at the iconv

folder that came with it.

解决方法:

将环境变量 APR_ICONV_PATH改为APR_ICONV1_PATH

或者下载Subversion 1.4.3的zip包,将环境变量 APR_ICONV_PATH 指向解压后的 iconv文件夹。