码迷,mamicode.com
首页 > Web开发 > 详细

.Net开源之corefx、coreclr初探(三)

时间:2015-02-09 23:13:50      阅读:464      评论:0      收藏:0      [点我收藏+]

标签:coreclr   开源   .net   helloworld   

本文介绍利用编译出来的coreclr来执行C#编写的Hello coreclr程序。我的机器环境是Win 7 x64 En,VS2013.

(1)编译test程序,根据开发guide,执行build指令如下:

<repo_root>\tests\buildtest.cmd x64 release clean
在我的环境中,编译成功了,没有出错误,开发guide中说明了如果出错误的解决办法。

同样编译完成后,会生成一个VS工程文件。为何要编译test,原因是我这边的Win7下,如果直接运行HelloCoreclr.exe程序的话,会提示找不到dll,而这些dll利用test编译后,

能够得到。

技术分享

(2)设置环境变量CORE_ROOT

CORE_ROOT的路径指向<..\coreclr\binaries\Product\x64\debug>下

技术分享

(3)编译helloworld程序

自己用C#写一个hello world程序,编译后生成exe文件,并将该文件拷贝粘贴到此路径下

<..\coreclr\binaries\Product\x64\debug>

(4)可以直接用命令好启动corerun.exe,运行helloworld程序。如下图为我创建的简单的hello coreclr!程序,由corerun.exe启动后的执行结果。此时已经脱离的默认的.net运行库,而是用开源的coreclr运行库运行哦。

技术分享

(5)api-ms-win-core-winrt-string-l1-1-0.dll找不到问题

实际上在第四步执行时,并不顺利,在win7下会出现dll找不到的错误,错误框如下。解决办法是将第一步中test编译出来的文件夹<..\coreclr\tests\src\packages\Microsoft.DotNet.CoreCLR.TestDependencies.1.0.0-prerelease\lib\aspnetcore50>

的dll全部拷贝一份到<..\coreclr\binaries\Product\x64\debug>下面,就ok了。这个错误很常见,github上很多人都遇到了这个错误。

技术分享

(6)coreclr的debug

开发guide提供了如何对coreclr进行debug的方法,原文如下,主要需要做的就是将coreclr.sln工程中的INSTALL项目属性进行设置。根据说明,设置情况如图:

技术分享

Debugging CoreCLR

  1. Perform a build of the repo.
  2. Open \binaries\Cmake\CoreCLR.sln in VS.
  3. Right click the INSTALL project and choose ‘Set as StartUp Project’
  4. Bring up the properties page for the INSTALL project
  5. Select Configuration Properties->Debugging from the left side tree control
  6. Set Command=$(SolutionDir)..\product\$(Platform)\$(Configuration)\corerun.exe
    1. This points to the folder where the built runtime binaries are present.
  7. Set Command Arguments=<managed app you wish to run> (e.g. HelloWorld.exe)
  8. Set Working Directory=$(SolutionDir)..\product\$(Platform)\$(Configuration)
    1. This points to the folder containing CoreCLR binaries.
  9. Press F11 to start debugging at wmain in corerun (or set a breakpoint in source and press F5 to run to it)
    1. As an example, set a breakpoint for the EEStartup function in ceemain.cpp to break into CoreCLR startup.

Steps 1-8 only need to be done once, and then (9) can be repeated whenever you want to start debugging. The above can be done with Visual Studio 2013.

按F11执行后,进入程序入口如下,然后就可以单步调试了,(PS:我这边环境变量没有设置也是单步调试的时候发现的,因为单步调试启动自己的Hello World程序时,会提示coreclr.dll加载失败,原因就是没有设置环境变量。)

技术分享

综上,windows下以开源coreclr运行hello world程序就实现了。想了解coreclr底层的东西,单步跟着代码走就行了。

.Net开源之corefx、coreclr初探(三)

标签:coreclr   开源   .net   helloworld   

原文地址:http://blog.csdn.net/cpplog/article/details/43673623

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!