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

all: split all backends into cmd/tools/builders (#12811)

This commit is contained in:
Delyan Angelov
2021-12-12 21:10:43 +02:00
committed by GitHub
parent 57c1faadbe
commit 3afbb9e90a
18 changed files with 157 additions and 96 deletions

View File

@ -0,0 +1,11 @@
module main
import v.builder.cbuilder
// TODO: change bootstrapping to use the C code generated from
// `VEXE=v cmd/tools/builders/c_builder -os cross -o c.c cmd/tools/builders/c_builder.v`
// See also `cmd/v/v.v`
fn main() {
cbuilder.start()
}