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