From 56ceccfea5d7ee29caee7328583a981a81f73546 Mon Sep 17 00:00:00 2001 From: Alex Medvednikov Date: Sun, 23 Jun 2019 13:27:43 +0200 Subject: [PATCH] Update README.md --- README.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index cdc0322643..522fd03b51 100644 --- a/README.md +++ b/README.md @@ -60,11 +60,16 @@ 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 -./v -o v . # Bootstrap the compiler to make sure it works ``` That's it! Now you have a V executable at `~/code/v/compiler/v`. +Bootstrap the compiler to make sure it works: + +``` +./v -o v . +``` + You can create a symlink so that it's globally available: ```