diff options
author | Matt Godbolt <matt@godbolt.org> | 2018-07-28 09:06:16 -0500 |
---|---|---|
committer | Matt Godbolt <matt@godbolt.org> | 2018-07-28 09:06:16 -0500 |
commit | 6304147037f0061589dac87c86c510f35e475a37 (patch) | |
tree | f998ca1c86278cf7523372363cee2b87e36e7d9f /lib/utils.js | |
parent | 17cc68ca91f96f1c2d37cfdf86cbf845eb0a5294 (diff) | |
download | compiler-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.js | 2 |
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) { |