# V ## Compiling source code [vc](https://github.com/vlang/vc) Last commit of V is C-source code, it is used to compile V itself, the compilation of the C binary is parallel its pretty fast: ```bash ❯ time cc -std=gnu11 -w -o v1 vc/v.c -lm -lexecinfo -lpthread cc -std=gnu11 -w -o v1 vc/v.c -lm -lexecinfo -lpthread 6.01s user 0.10s system 99% cpu 6.116 total ``` ## Compiling V to aarch64 and running with QEMU: aarch64-linux-gnu-gcc -std=gnu11 -w -o varm vc/v.c -lm -lpthread