diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2018-07-12 14:02:03 -0400 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2018-07-12 17:38:51 -0400 |
commit | ad4f335847daffcc5556008aebebaf2d1eecac67 (patch) | |
tree | 607b8f3b084455a6f342252890a852e3e397cd62 | |
parent | 24b0e91d8096f84a114f662e3eb42c83d0d3878d (diff) |
Add color to rustc output (except windows)
-rw-r--r-- | build_extra/rust/rust.gni | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/build_extra/rust/rust.gni b/build_extra/rust/rust.gni index d9c23fb1b..58f112d39 100644 --- a/build_extra/rust/rust.gni +++ b/build_extra/rust/rust.gni @@ -43,6 +43,9 @@ template("run_rustc") { "--crate-name=$crate_name", "--crate-type=$crate_type", ] + if (!is_win) { + args += [ "--color=always" ] + } if (defined(is_test) && is_test) { # Test outputs are executables which should be in root_out_dir. |