From b3ec7f742603c0d575439e5b360275a4e41b3b35 Mon Sep 17 00:00:00 2001 From: Alex Medvednikov Date: Sun, 23 Jun 2019 11:44:40 +0200 Subject: [PATCH] readme: `make` makes things so much easier --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 2489d63f5a..cf5acf35f9 100644 --- a/README.md +++ b/README.md @@ -54,6 +54,9 @@ The rest of the directories are vlib modules: `builtin/` (strings, arrays, maps) mkdir -p ~/code && cd ~/code # ~/code directory has to be used (it's a temporary limitation) git clone https://github.com/vlang/v cd v/compiler +make + +# Or build without make: wget https://vlang.io/v.c # Download the V compiler's source translated to C cc -std=c11 -w -o vc v.c # Build it with Clang or GCC ./vc -o v . && rm vc # Use the resulting V binary to build V from V source, delete the old compiler