1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

all: gc: provide optimized mode (#9716)

This commit is contained in:
Uwe Krüger
2021-04-14 00:40:26 +02:00
committed by GitHub
parent 8c95f07509
commit 10bf974cda
26 changed files with 11724 additions and 49 deletions

View File

@@ -74,10 +74,12 @@ see also `v help build`.
Use and link an optional garbage collector. Only tThe BoehmDemersWeiser
garbage collector is supported currently with the following sub-options:
`-gc boehm` ........ selects the default mode for the architecture
`-gc boehm_full` ... full garbage collection mode
`-gc boehm_incr` ... incremental/generational garbage collection mode
`-gc boehm_leak` ... leak detection mode
`-gc boehm` ........... selects the default mode for the architecture
`-gc boehm_full` ...... full garbage collection mode
`-gc boehm_incr` ...... incremental/generational garbage collection mode
`-gc boehm_full_opt` .. optimized full garbage collection mode
`-gc boehm_incr_opt` .. optimized incremental/generational garbage collection mode
`-gc boehm_leak` ...... leak detection mode
You need to install a `libgc-dev` package first, or install it manually from: