aboutsummaryrefslogtreecommitdiff
path: root/lib/utils.js
diff options
context:
space:
mode:
authorMatt Godbolt <matt@godbolt.org>2018-07-28 09:06:16 -0500
committerMatt Godbolt <matt@godbolt.org>2018-07-28 09:06:16 -0500
commit6304147037f0061589dac87c86c510f35e475a37 (patch)
treef998ca1c86278cf7523372363cee2b87e36e7d9f /lib/utils.js
parent17cc68ca91f96f1c2d37cfdf86cbf845eb0a5294 (diff)
downloadcompiler-explorer-6304147037f0061589dac87c86c510f35e475a37.tar.gz
compiler-explorer-6304147037f0061589dac87c86c510f35e475a37.zip
Wine fixes. Closes #1017
* Remove horrible wine fixme preprocessing. * Move some settings into code from `compiler-wrapper`. * Set `WINEDEBUG` to -all to turn off messages at source.
Diffstat (limited to 'lib/utils.js')
-rw-r--r--lib/utils.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/utils.js b/lib/utils.js
index f25e6b622..53218b25b 100644
--- a/lib/utils.js
+++ b/lib/utils.js
@@ -62,7 +62,7 @@ function parseOutput(lines, inputFilename, pathPrefix) {
line = line.split('<stdin>').join('<source>');
if (pathPrefix) line = line.replace(pathPrefix, "");
if (inputFilename) line = line.split(inputFilename).join('<source>');
- if (line !== "" && line.indexOf("fixme:") !== 0) {
+ if (line !== "") {
const lineObj = {text: line};
const match = line.replace(/\x1b\[[\d;]*[mK]/g, '').match(re);
if (match) {