(
compiler: string,
options: string[],
inputFilename: string,
execOptions: ExecutionOptionsWithEnv,
)
| 148 | } |
| 149 | |
| 150 | override async buildExecutable( |
| 151 | compiler: string, |
| 152 | options: string[], |
| 153 | inputFilename: string, |
| 154 | execOptions: ExecutionOptionsWithEnv, |
| 155 | ) { |
| 156 | const compilerInfo = await this.getCompilerInfo(this.lang.id); |
| 157 | const compilerOptions = this.extractCompilerOptions(options); |
| 158 | return await this.buildToDll(compiler, compilerInfo, inputFilename, execOptions, compilerOptions, true); |
| 159 | } |
| 160 | |
| 161 | extractCompilerOptions(options: string[]): string[] { |
| 162 | const compilerOptions: string[] = []; |
nothing calls this directly
no test coverage detected