From f9952053af4e20833e567a041cad58ec80878e16 Mon Sep 17 00:00:00 2001 From: Delyan Angelov Date: Fri, 26 Apr 2024 20:29:49 +0300 Subject: [PATCH] v.builder: update macos->linux cross compile message (~22MB -> ~77MB) --- 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 24b03d00b8..854cbea805 100644 --- a/vlib/v/builder/cc.v +++ b/vlib/v/builder/cc.v @@ -732,7 +732,7 @@ fn (mut b Builder) ensure_linuxroot_exists(sysroot string) { os.rmdir_all(sysroot) or {} } if !os.is_dir(sysroot) { - println('Downloading files for Linux cross compilation (~22MB) ...') + println('Downloading files for Linux cross compilation (~77MB) ...') os.system('git clone ${crossrepo_url} ${sysroot}') if !os.exists(sysroot_git_config_path) { verror('Failed to clone `${crossrepo_url}` to `${sysroot}`')