diff options
author | tilpner | 2018-09-23 23:26:32 +0200 |
---|---|---|
committer | tilpner | 2018-09-23 23:26:32 +0200 |
commit | 02b1d2bc9dbd4af3bdb7c8059968836c918242e9 (patch) | |
tree | 01cfc323d353c0f87c030b141b68f4cd6d823be9 | |
parent | d5cf11c4da4ac8b9b4653ed7cc51cffdee261311 (diff) | |
download | qeval-02b1d2bc9dbd4af3bdb7c8059968836c918242e9.tar.gz qeval-02b1d2bc9dbd4af3bdb7c8059968836c918242e9.tar.xz qeval-02b1d2bc9dbd4af3bdb7c8059968836c918242e9.zip |
Disable g++ colors
-rw-r--r-- | evaluators.nix | 2 |
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;"; |