readme: `make` makes things so much easier

pull/436/head
Alex Medvednikov 2019-06-23 11:44:40 +02:00 committed by GitHub
parent 99c781bf07
commit b3ec7f7426
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

@ -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