From f29079daac1bf1757bbd057bed8e9215ee72502b Mon Sep 17 00:00:00 2001 From: Alexander Medvednikov Date: Wed, 28 Aug 2019 14:35:48 +0300 Subject: [PATCH] better winroot.zip info message --- compiler/cc.v | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/compiler/cc.v b/compiler/cc.v index bd70e54fde..6e9ca27736 100644 --- a/compiler/cc.v +++ b/compiler/cc.v @@ -233,7 +233,11 @@ fn (c mut V) cc_windows_cross() { winroot := '$ModPath/winroot' if !os.dir_exists(winroot) { winroot_url := 'https://github.com/vlang/v/releases/download/v0.1.10/winroot.zip' - println('"$winroot" not found. Download it from $winroot_url and save in $ModPath') + println('"$winroot" not found.') + println('Download it from $winroot_url and save it in $ModPath') + println('Unzip it afterwards.\n') + println('winroot.zip contains all library and header files needed '+ + 'to cross-compile for Windows.') exit(1) } mut obj_name := c.out_name