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

cgen: remaining nodes; match type fix; v2.c is now generated

This commit is contained in:
Alexander Medvednikov
2020-03-04 15:48:43 +01:00
parent 8458ea40f0
commit 37453945d0
8 changed files with 85 additions and 53 deletions

View File

@ -340,7 +340,7 @@ pub fn (v mut V) compile2() {
println(v.files)
}
mut b := v.new_v2()
b.build_c(v.files, v.pref.out_name)
b.build_c(v.files, v.out_name_c)// v.pref.out_name + '.c')
v.cc()
}