From defa9c1d0066e929551af75c33169dbc862930f8 Mon Sep 17 00:00:00 2001 From: Alexander Medvednikov Date: Tue, 29 Sep 2020 03:28:38 +0200 Subject: [PATCH] cmd: update flags help --- cmd/v/help/build-c.txt | 8 -------- 1 file changed, 8 deletions(-) diff --git a/cmd/v/help/build-c.txt b/cmd/v/help/build-c.txt index b48e6e7b5f..c1aa57aba1 100644 --- a/cmd/v/help/build-c.txt +++ b/cmd/v/help/build-c.txt @@ -7,10 +7,6 @@ For help regarding building an executable, see `v help build`. These build flags are enabled on `build` and `run` as long as the backend is set to `c`: - -arch - Change the architecture that V will tell the C compiler to build. - List of supported architectures: `x86` and `x64` (default). - -cc Change the C compiler V invokes to the specified compiler. The C compiler is required to support C99. @@ -41,10 +37,6 @@ These build flags are enabled on `build` and `run` as long as the backend is set -live Build the executable with live capabilities (`[live]`). - -manual-free - Enable manually freeing on all V code. This will cause memory leaks in vlib. - Currently enabled until a stable auto-free system is in place. - -os , -target-os Change the target OS that V tries to compile for. By default, the target OS is the host system.