Exemple #1
0
 public AOTCompiler(AOTOptions options, AOTCompilerType compilerType, bool isModern, bool isRelease)
 {
     this.options      = options;
     this.compilerType = compilerType;
     this.IsModern     = isModern;
     this.IsRelease    = isRelease;
 }
Exemple #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;
 }
Exemple #3
0
 public AOTCompiler(AOTOptions options, AOTCompilerType compilerType)
 {
     this.options      = options;
     this.compilerType = compilerType;
 }