diff options
author | nickpdemarco <nickpdemarco@gmail.com> | 2023-10-11 14:43:05 -0400 |
---|---|---|
committer | nickpdemarco <nickpdemarco@gmail.com> | 2023-10-11 14:43:05 -0400 |
commit | 9cda199e40c920fcc9c53082b0dabb17d31a8b7f (patch) | |
tree | a4e9a03a9feea17376f5990e19c12818d32ec95e /lib/compilers/pascal-win.ts | |
parent | 55a2b1455f823026c78b9219f93799af00ef60ae (diff) | |
parent | 10796b3696cf1eef928de8c750b4d3350ee0c2db (diff) | |
download | compiler-explorer-9cda199e40c920fcc9c53082b0dabb17d31a8b7f.tar.gz compiler-explorer-9cda199e40c920fcc9c53082b0dabb17d31a8b7f.zip |
Merge main, resolve conflicts with vala
Diffstat (limited to 'lib/compilers/pascal-win.ts')
-rw-r--r-- | lib/compilers/pascal-win.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/compilers/pascal-win.ts b/lib/compilers/pascal-win.ts index 00b4bcba8..e73d0335b 100644 --- a/lib/compilers/pascal-win.ts +++ b/lib/compilers/pascal-win.ts @@ -99,7 +99,7 @@ export class PascalWinCompiler extends BaseCompiler { outputFilename = this.getOutputFilename(path.dirname(outputFilename)); } - let args = ['-d', outputFilename]; + let args = [...this.compiler.objdumperArgs, '-d', outputFilename]; if (intelAsm) args = args.concat(['-M', 'intel']); return this.exec(this.compiler.objdumper, args, {maxOutput: 1024 * 1024 * 1024}).then(objResult => { if (objResult.code === 0) { @@ -151,7 +151,7 @@ export class PascalWinCompiler extends BaseCompiler { compiler: string, options: string[], inputFilename: string, - execOptions: ExecutionOptions, + execOptions: ExecutionOptions & {env: Record<string, string>}, ) { if (!execOptions) { execOptions = this.getDefaultExecOptions(); |