Skip to content

Commit

Permalink
Fix compiler-explorer#6843: Pascal compileFilename
Browse files Browse the repository at this point in the history
  • Loading branch information
OfekShilon committed Sep 10, 2024
1 parent 9ef46fb commit c612ae2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/compilers/pascal.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ export class FPCCompiler extends BaseCompiler {
constructor(info: PreliminaryCompilerInfo, env: CompilationEnvironment) {
super(info, env);

this.compileFilename = 'output.pas';
this.compileFilename = 'prog.pas';
this.dprFilename = 'prog.dpr';
this.supportsOptOutput = false;
this.nasmPath = this.compilerProps<string>('nasmpath');
Expand Down

0 comments on commit c612ae2

Please sign in to comment.