aboutsummaryrefslogtreecommitdiff
path: root/lib/compilers
diff options
context:
space:
mode:
Diffstat (limited to 'lib/compilers')
-rw-r--r--lib/compilers/argument-parsers.js6
-rw-r--r--lib/compilers/cc65.js2
-rw-r--r--lib/compilers/clang.js2
-rw-r--r--lib/compilers/clean.js2
4 files changed, 6 insertions, 6 deletions
diff --git a/lib/compilers/argument-parsers.js b/lib/compilers/argument-parsers.js
index 1a95fb617..19717dd2d 100644
--- a/lib/compilers/argument-parsers.js
+++ b/lib/compilers/argument-parsers.js
@@ -66,7 +66,7 @@ class BaseParser {
}
static getOptions(compiler, helpArg) {
- return compiler.exec(compiler.compiler.exe, [helpArg]).then(result => {
+ return compiler.execCompilerCached(compiler.compiler.exe, [helpArg]).then(result => {
let options = {};
if (result.code === 0) {
const optionFinder = /^\s*(--?[a-z0-9=+,[\]<>|-]*)\s*(.*)/i;
@@ -153,7 +153,7 @@ class ISPCParser extends BaseParser {
}
static getOptions(compiler, helpArg) {
- return compiler.exec(compiler.compiler.exe, [helpArg]).then(result => {
+ return compiler.execCompilerCached(compiler.compiler.exe, [helpArg]).then(result => {
let options = {};
if (result.code === 0) {
const optionFinder = /^\s*\[(--?[a-z0-9=+,{}\s[\]<>|-]*)\]\s*(.*)/i;
@@ -238,7 +238,7 @@ class VCParser extends BaseParser {
}
static getOptions(compiler, helpArg) {
- return compiler.exec(compiler.compiler.exe, [helpArg]).then(result => {
+ return compiler.execCompilerCached(compiler.compiler.exe, [helpArg]).then(result => {
let options = {};
if (result.code === 0) {
const optionFinder = /^\s*(\/[a-z0-9=:+#.,[\]{}<>|_-]*)\s*(.*)/i;
diff --git a/lib/compilers/cc65.js b/lib/compilers/cc65.js
index 043851c7f..e611c42a2 100644
--- a/lib/compilers/cc65.js
+++ b/lib/compilers/cc65.js
@@ -1,4 +1,4 @@
-// Copyright (c) 2019, Compiler Explorer Team
+// Copyright (c) 2019, Compiler Explorer Authors
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
diff --git a/lib/compilers/clang.js b/lib/compilers/clang.js
index df5ef5bc9..050e14a5c 100644
--- a/lib/compilers/clang.js
+++ b/lib/compilers/clang.js
@@ -1,4 +1,4 @@
-// Copyright (c) 2018, Compiler Explorer Team
+// Copyright (c) 2018, Compiler Explorer Authors
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
diff --git a/lib/compilers/clean.js b/lib/compilers/clean.js
index 6588e4df5..5ed68c13a 100644
--- a/lib/compilers/clean.js
+++ b/lib/compilers/clean.js
@@ -1,4 +1,4 @@
-// Copyright (c) 2018, Compiler Explorer Team
+// Copyright (c) 2018, Compiler Explorer Authors
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without