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

fix v -o foo.c build module foo

This commit is contained in:
Alexander Medvednikov
2019-11-16 21:49:55 +03:00
parent 328ccebf06
commit 8d1eb759f7
4 changed files with 6 additions and 5 deletions

View File

@ -31,6 +31,7 @@ fn (v mut V) cc() {
vdir := os.dir(vexe)
// Just create a C/JavaScript file and exit
// for example: `v -o v.c compiler`
println('CC() $v.out_name')
if v.out_name.ends_with('.c') || v.out_name.ends_with('.js') {
// Translating V code to JS by launching vjs.
// Using a separate process for V.js is for performance mostly,