From 8121a8ada059759f0e2b7ce13a816e74e5dec0da Mon Sep 17 00:00:00 2001 From: Delyan Angelov Date: Wed, 30 Mar 2022 13:49:55 +0300 Subject: [PATCH] ci,cgen: comment out including stdbool.h for now Fails tcc tests on windows, see: https://github.com/vlang/v/runs/5749951315?check_suite_focus=true and vlib/v/checker/tests/globals_run/function_stored_in_global.vv --- vlib/v/gen/c/cgen.v | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vlib/v/gen/c/cgen.v b/vlib/v/gen/c/cgen.v index 16c3ab7377..6dd5c732bb 100644 --- a/vlib/v/gen/c/cgen.v +++ b/vlib/v/gen/c/cgen.v @@ -652,7 +652,7 @@ pub fn (mut g Gen) init() { g.cheaders.writeln('#include ') } else { g.cheaders.writeln(get_guarded_include_text('', 'The C compiler can not find . Please install build-essentials')) // int64_t etc - g.cheaders.writeln(get_guarded_include_text('', 'The C compiler can not find . Please install build-essentials')) // bool, true, false + // g.cheaders.writeln(get_guarded_include_text('', 'The C compiler can not find . Please install build-essentials')) // bool, true, false g.cheaders.writeln(get_guarded_include_text('', 'The C compiler can not find . Please install build-essentials')) // size_t, ptrdiff_t } }