2020-07-20 11:36:27 +02:00
|
|
|
module main
|
|
|
|
|
|
|
|
import os
|
|
|
|
import v.pref
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
vexe := pref.vexe_path()
|
|
|
|
vroot := os.dir(vexe)
|
2021-08-28 11:44:03 +02:00
|
|
|
os.chdir(vroot) ?
|
2020-07-20 11:36:27 +02:00
|
|
|
os.setenv('VCOLORS', 'always', true)
|
|
|
|
self_idx := os.args.index('tracev')
|
|
|
|
args := os.args[1..self_idx]
|
|
|
|
args_str := args.join(' ')
|
|
|
|
options := if args.len > 0 { '($args_str)' } else { '' }
|
|
|
|
println('Compiling a `tracev` executable ${options}...')
|
2022-01-22 20:13:16 +01:00
|
|
|
os.system('${os.quoted_path(vexe)} -cg -d trace_parser -d trace_checker -d trace_gen -o tracev $args_str cmd/v')
|
2020-07-20 11:36:27 +02:00
|
|
|
}
|