From ea4ea7d647044bc66ec4e33791e16bc90a974694 Mon Sep 17 00:00:00 2001 From: Alex Medvednikov Date: Tue, 25 Jun 2019 23:02:25 +0200 Subject: [PATCH] Update README.md --- README.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index d1d12991cc..81be92c55f 100644 --- a/README.md +++ b/README.md @@ -55,9 +55,11 @@ You'll need Clang or GCC. On macOS run `xcode-select --install` if you don't hav 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 +``` +Or build without make: +``` +# Download the V compiler's source translated to C +wget https://raw.githubusercontent.com/vlang/vc/master/v.c cc -std=gnu11 -w -o v v.c # Build it with Clang or GCC ./v -o v . # Use the resulting V binary to build V from V source ./v -o v . # Bootstrap the compiler again to make sure it works