diff options
author | RabsRincon <ruben@rinconblanco.es> | 2021-12-31 13:23:22 +0100 |
---|---|---|
committer | RabsRincon <ruben@rinconblanco.es> | 2021-12-31 13:23:22 +0100 |
commit | 91e4f3702ac2bb23d2c275127f42875114785c9b (patch) | |
tree | e613bd3d6954aa73b1b4189418020ba6a7b5cf21 /lib/compilers/assembly.js | |
parent | 9c2528000efa07b95c3fd1b4766b1acc8155bbf3 (diff) | |
download | compiler-explorer-91e4f3702ac2bb23d2c275127f42875114785c9b.tar.gz compiler-explorer-91e4f3702ac2bb23d2c275127f42875114785c9b.zip |
Make sure asm-raw behaves on compilation errorsgh-1487
Closes #3198
Diffstat (limited to 'lib/compilers/assembly.js')
-rw-r--r-- | lib/compilers/assembly.js | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/lib/compilers/assembly.js b/lib/compilers/assembly.js index ba1473c1b..d786ee5c6 100644 --- a/lib/compilers/assembly.js +++ b/lib/compilers/assembly.js @@ -70,19 +70,6 @@ export class AssemblyCompiler extends BaseCompiler { return this.getGeneratedOutputFilename(path.join(dirPath, 'example.asm')); } - async runCompiler(compiler, options, inputFilename, execOptions) { - if (!execOptions) { - execOptions = this.getDefaultExecOptions(); - } - execOptions.customCwd = path.dirname(inputFilename); - - const result = await this.exec(compiler, options, execOptions); - result.inputFilename = inputFilename; - result.stdout = utils.parseOutput(result.stdout, inputFilename); - result.stderr = utils.parseOutput(result.stderr, inputFilename); - return result; - } - async runReadelf(fullResult, objectFilename) { let execOptions = this.getDefaultExecOptions(); execOptions.customCwd = path.dirname(objectFilename); |