我从http://sourceforge.net/cvs/?group_id=69637下载了IKVM源(http://www.ikvm.net/)
现在我试图让它在Visual Studio 2008中构建并且卡住了.有没有人知道如何构建这个东西的文档,或者甚至可以给我指点?
我已经尝试打开ikvm8.sln,它会打开所有项目,但是尝试构建解决方案会导致一堆"类型或命名空间无法找到"错误.
你可能猜到我不是Visual Studio专家,而是习惯在Eclipse中使用Java.
所以,我正在寻找:逐步说明或指向如何在Visual Studio中构建IKVM的文档的链接.
如果您需要更多信息,请告诉我.谢谢你的帮助!
编辑:我也尝试过手册"MsBuild.exe IKVM8.sln",但也得到了一堆:
JniInterface.cs(30,12): error CS0234: The type or namespace name 'Internal' does not exist in the namespace 'IKVM' (a re you missing an assembly reference?) JniInterface.cs(175,38): error CS0246: The type or namespace name 'ClassLoaderWrapper' could not be found (are you mi ssing a using directive or an assembly reference?) JniInterface.cs(175,13): error CS0246: The type or namespace name 'ClassLoaderWrapper' could not be found (are you mi ssing a using directive or an assembly reference?)
编辑#2:我注意到了一个"ikvm.build"文件,所以我下载并运行了该文件夹,这让我更进了一步.一些事情开始成功构建,不幸的是我现在得到以下错误:
IKVM本地-win32的:
[mkdir] Creating directory 'C:\Documents and Settings\...\My Documents\ikvm\ikvm\native\Release'. [cl] Compiling 2 files to 'C:\Documents and Settings\...\My Documents\ikvm\ikvm\native\Release'. BUILD FAILED C:\Documents and Settings\...\My Documents\ikvm\ikvm\native\native.build(17,10): 'cl' failed to start. The system cannot find the file specified Total time: 0.2 seconds.
编辑#3:确定通过放入cl.exe
路径解决了问题,但仍然遇到其他错误.请注意,这只是用于在控制台上构建它,例如使用Nant.有没有办法让它在Visual Studio中构建?那会很难过......
编辑#4:下一步是安装GNU classpath 0.95,现在看起来我需要一个特定的OpenJDK安装...... Linux AMD64 ?!
[exec] javac: file not found: ..\..\openjdk6-b12\control\build\linux-amd64\gensrc\com\sun\accessibility\internal\resources\accessibility.java [exec] Usage: javac
编辑#5:得到了作者的回答.见下文或http://weblog.ikvm.net/CommentView.aspx?guid=7e91b51d-6f84-4485-b61f-ea9e068a5fcf 让我们看看它是否有效......
编辑#6正如我所担心的,下一个问题是:"无法打开windows.h",请在此处查看单独的问题.
最终编辑:找到解决方案!在Lib和Path环境变量中获取Platform SDK文件夹之后,我在下面描述的解决方案对我有用.