From 8067fcee57d2956a1827f8750f30c06b93cbcd4f Mon Sep 17 00:00:00 2001 From: Delyan Angelov Date: Tue, 15 Dec 2020 10:47:41 +0200 Subject: [PATCH] builder: change the tcc recompilation failed message --- vlib/v/builder/cc.v | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vlib/v/builder/cc.v b/vlib/v/builder/cc.v index e5d377d3d7..8b6c444b56 100644 --- a/vlib/v/builder/cc.v +++ b/vlib/v/builder/cc.v @@ -558,8 +558,8 @@ fn (mut v Builder) cc() { } exit(101) } - eprintln('recompilation with tcc failed; retrying with cc ...') v.pref.ccompiler = pref.default_c_compiler() + eprintln('Compilation with tcc failed. Retrying with $v.pref.ccompiler ...') continue } if res.exit_code == 127 {