From afac2bf4de3f27d13ade85b86cca6e53aecbaf48 Mon Sep 17 00:00:00 2001 From: Zaoqi Date: Mon, 5 Aug 2019 15:59:48 +0800 Subject: [PATCH] readme: Building without make: add `git clone` (#1468) --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 87ca9f073d..d886b7b992 100644 --- a/README.md +++ b/README.md @@ -66,6 +66,8 @@ On Windows follow these instructions: [github.com/vlang/v/wiki/Installing-a-C-co ### Building without make ```bash +git clone https://github.com/vlang/v +cd v # Download the V compiler's source translated to C curl -O https://raw.githubusercontent.com/vlang/vc/master/v.c cc -std=gnu11 -w -o v v.c -lm # Build it with Clang or GCC