コード例 #1
0
 public AOTCompiler(AOTOptions options, AOTCompilerType compilerType, bool isModern, bool isRelease)
 {
     this.options      = options;
     this.compilerType = compilerType;
     this.IsModern     = isModern;
     this.IsRelease    = isRelease;
 }
コード例 #2
0
 public AOTCompiler(AOTOptions options, IEnumerable <Abi> abis, AOTCompilerType compilerType, bool isModern, bool isRelease)
 {
     this.options      = options;
     this.abis         = abis.ToArray();
     this.compilerType = compilerType;
     this.IsModern     = isModern;
     this.IsRelease    = isRelease;
 }
コード例 #3
0
ファイル: aot.cs プロジェクト: yizhang82/xamarin-macios
 public AOTCompiler(AOTOptions options, AOTCompilerType compilerType)
 {
     this.options      = options;
     this.compilerType = compilerType;
 }