aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortilpner2018-09-23 23:26:32 +0200
committertilpner2018-09-23 23:26:32 +0200
commit02b1d2bc9dbd4af3bdb7c8059968836c918242e9 (patch)
tree01cfc323d353c0f87c030b141b68f4cd6d823be9
parentd5cf11c4da4ac8b9b4653ed7cc51cffdee261311 (diff)
downloadqeval-02b1d2bc9dbd4af3bdb7c8059968836c918242e9.tar.gz
qeval-02b1d2bc9dbd4af3bdb7c8059968836c918242e9.tar.xz
qeval-02b1d2bc9dbd4af3bdb7c8059968836c918242e9.zip
Disable g++ colors
-rw-r--r--evaluators.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/evaluators.nix b/evaluators.nix
index bdc969b..9a78b0c 100644
--- a/evaluators.nix
+++ b/evaluators.nix
@@ -120,7 +120,7 @@ let
return 0;
};
EOF
- g++ -x 'c++' -o /input.out /input && /input.out
+ g++ -x 'c++' -o /input.out -w -fdiagnostics-color=never /input && /input.out
'';
testInput = "cout << \"success\" << endl;";