用Platform Builder 5.0命令行编译托管C#代码
在微软的MSDN文档中,并没有介绍使用命令行工具编译托管代码,仅仅介绍了如何使用sources, dirs编译C/C++代码。但是我们每次通过命令行编译代码,最终都会列出一个这样的清单:
BUILD: [00:0000000029<img src=’http://sys2.blogcn.com/images/tongue.gif’ border=’0’ onload=’if(this.width>screen.width/2)this.style.width=screen.width/2;’>ROGC ] Files
BUILD: [00:0000000030<img src=’http://sys2.blogcn.com/images/tongue.gif’ border=’0’ onload=’if(this.width>screen.width/2)this.style.width=screen.width/2;’>ROGC ] Midl 0
BUILD: [00:0000000031<img src=’http://sys2.blogcn.com/images/tongue.gif’ border=’0’ onload=’if(this.width>screen.width/2)this.style.width=screen.width/2;’>ROGC ] Resource 1
BUILD: [00:0000000032<img src=’http://sys2.blogcn.com/images/tongue.gif’ border=’0’ onload=’if(this.width>screen.width/2)this.style.width=screen.width/2;’>ROGC ] Message 0
BUILD: [00:0000000033<img src=’http://sys2.blogcn.com/images/tongue.gif’ border=’0’ onload=’if(this.width>screen.width/2)this.style.width=screen.width/2;’>ROGC ] Precomp Header 1
BUILD: [00:0000000034<img src=’http://sys2.blogcn.com/images/tongue.gif’ border=’0’ onload=’if(this.width>screen.width/2)this.style.width=screen.width/2;’>ROGC ] C/Cpp/Cxx 1
BUILD: [00:0000000035<img src=’http://sys2.blogcn.com/images/tongue.gif’ border=’0’ onload=’if(this.width>screen.width/2)this.style.width=screen.width/2;’>ROGC ] Assembler 0
BUILD: [00:0000000036<img src=’http://sys2.blogcn.com/images/tongue.gif’ border=’0’ onload=’if(this.width>screen.width/2)this.style.width=screen.width/2;’>ROGC ] Static Libraries 0
BUILD: [00:0000000037<img src=’http://sys2.blogcn.com/images/tongue.gif’ border=’0’ onload=’if(this.width>screen.width/2)this.style.width=screen.width/2;’>ROGC ] Dll’s 0
BUILD: [00:0000000038<img src=’http://sys2.blogcn.com/images/tongue.gif’ border=’0’ onload=’if(this.width>screen.width/2)this.style.width=screen.width/2;’>ROGC ] Exe’s 0
BUILD: [00:0000000039<img src=’http://sys2.blogcn.com/images/tongue.gif’ border=’0’ onload=’if(this.width>screen.width/2)this.style.width=screen.width/2;’>ROGC ] Resx 0
BUILD: [00:0000000040<img src=’http://sys2.blogcn.com/images/tongue.gif’ border=’0’ onload=’if(this.width>screen.width/2)this.style.width=screen.width/2;’>ROGC ] Csharp Targets 0
BUILD: [00:0000000041<img src=’http://sys2.blogcn.com/images/tongue.gif’ border=’0’ onload=’if(this.width>screen.width/2)this.style.width=screen.width/2;’>ROGC ] Other 0
BUILD: [00:0000000042<img src=’http://sys2.blogcn.com/images/tongue.gif’ border=’0’ onload=’if(this.width>screen.width/2)this.style.width=screen.width/2;’>ROGC ]
BUILD: [00:0000000043<img src=’http://sys2.blogcn.com/images/tongue.gif’ border=’0’ onload=’if(this.width>screen.width/2)this.style.width=screen.width/2;’>ROGC ] Total 3
我们可以注意到有一项这样的提示:
BUILD: [00:0000000040<img src=’http://sys2.blogcn.com/images/tongue.gif’ border=’0’ onload=’if(this.width>screen.width/2)this.style.width=screen.width/2;’>ROGC ] Csharp Targets 0
C# Target?对!C# Target,如果Build System真的不支持编译托管代码,那么怎么会有这项提示呢,直觉中感觉似乎微软在Windows CE 5.0中增加了点什么。
今天无意浏览了每个makefile都会包含的在编译系统中地位极为重要makefile.def文件,发现其中有大量的关于managed代码的描述。例如:
RELEASETYPE=DEFAULT
!ELSEIF “$(RELEASETYPE)” == “SDK”
!ELSEIF “$(RELEASETYPE)” == “OAK”
!ELSEIF “$(RELEASETYPE)” == “DDK”
!ELSEIF “$(RELEASETYPE)” == “MANAGED” 注意注意!!
!ELSEIF “$(RELEASETYPE)” == “PLATFORM”
!ELSEIF “$(RELEASETYPE)” == “LOCAL”
!ELSEIF “$(RELEASETYPE)” == “CETK”
!ELSEIF “$(RELEASETYPE)” == “CUSTOM”
经过精密的理论推导,觉得Windows CE 5.0的Build System应该是可以直接编译C#代码的。那就自己动手来一把。
随便在某个平台下建立一个目录,就叫manage,然后用迅雷不及掩耳盗铃的速度就写好了hello.cs,内容当然是HelloWorld:
using System;
namespace Hello
{
class Hello
{
public static void Main(String [] args)
{
System.Console.WriteLine(“Hello World”);
}
} }
然后建立makefile文件,内容当然只有永远的一行:
!INCLUDE $(_MAKEENVROOT)\makefile.def
然后sources文件是重点,内容如下:
__PROJROOT= E:\WINCE500\PBWorkspaces\Test\manage
RELEASETYPE=MANAGED
TARGETTYPE=MANAGED_EXE
TARGETNAME=Hello
MANAGED_REFERENCES = mscorlib.dll;System.dll
SOURCES= \
hello.cs \
RELEASETYPE和TARGETTYPE都要设置成文档中没有说明的类型,MANAGED和MANAGED_EXE。(文档没说你怎么知道的?…我是看makefile.def里面看到的)。MANAGED_REFERENCES是其他DLL引用。要把mscorlib.dll和System.dll加进去,否则会抱错。中间是用分号间隔。
然后在PB里面Open Release Directory,CD到Manage目录,然后build –c,呵呵0 error 0 warning。然后再\oak\target\MANAGED\debug目录下顺利地找到的Hello.exe。
大功告成,事实证明。虽然文档没记载,在Platform Builder下编译managed Code还是可行的。