我正在开展一个项目,我们正在使用 DLR 将 Racket 语言移植到 .NET。
我们建立一个表达式树并调用CompileToMethod()
方法:
相关的可执行发射代码:(取自How to Save an Expression Tree as the Main Entry Point to a New Executable Disk File?)
//Wrap the program into a block expression
Expression code = Expression.Block(new ParameterExpression[] { env, voidSingleton}, program);
var asmName = new AssemblyName("Foo");
var asmBuilder = AssemblyBuilder.DefineDynamicAssembly(asmName, AssemblyBuilderAccess.RunAndSave);
var moduleBuilder = asmBuilder.DefineDynamicModule("Foo", "Foo.exe");
var typeBuilder = moduleBuilder.DefineType("Program", TypeAttributes.Public);
var methodBuilder = typeBuilder.DefineMethod("Main",
MethodAttributes.Static, typeof(void), new[] { typeof(string) });
Expression.Lambda<Action>(code).CompileToMethod(methodBuilder);
typeBuilder.CreateType();
asmBuilder.SetEntryPoint(methodBuilder);
asmBuilder.Save("Foo.exe");
我们有我们的运行时库Runtime_rkt.dll
,其中包含相关的运行时类型转换、支持对象等。
当我们放置在同一个目录中时,一切正常Foo.exe
。Runtime_rkt.dll
我们遇到的问题是当我们(显然)将运行时库移动到其他地方时。最终,我们将希望C:\Windows\Microsoft.NET\assembly\GAC_MSIL
像 IronPython 一样安装它。[使用 GAC 解决]
[编辑] 额外点的新问题 有什么方法可以将所有运行时方法静态编译到可执行文件中?