aboutsummaryrefslogtreecommitdiff
path: root/lib/compilers/argument-parsers.js
diff options
context:
space:
mode:
authorPatrick Quist <partouf@gmail.com>2022-05-13 01:18:03 +0200
committerGitHub <noreply@github.com>2022-05-13 01:18:03 +0200
commit67714e53ac125f6570a7d623eeb6605dd7de854f (patch)
tree3cd14edd7f31efe5fd6c616bc90fbed44c5e9535 /lib/compilers/argument-parsers.js
parentfaf6e9dce11b23c7ef997c026f2ab9661e9dda9f (diff)
downloadcompiler-explorer-67714e53ac125f6570a7d623eeb6605dd7de854f.tar.gz
compiler-explorer-67714e53ac125f6570a7d623eeb6605dd7de854f.zip
Dosbox + Turbo C 2.01 support (#3627)gh-2886
Diffstat (limited to 'lib/compilers/argument-parsers.js')
-rw-r--r--lib/compilers/argument-parsers.js7
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/compilers/argument-parsers.js b/lib/compilers/argument-parsers.js
index 1047677ce..10255df3e 100644
--- a/lib/compilers/argument-parsers.js
+++ b/lib/compilers/argument-parsers.js
@@ -351,3 +351,10 @@ export class TypeScriptNativeParser extends BaseParser {
return compiler;
}
}
+
+export class TurboCParser extends BaseParser {
+ static async parse(compiler) {
+ await TurboCParser.getOptions(compiler, '');
+ return compiler;
+ }
+}