1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
Files
v/vlib/v/builder/x64.v
2021-02-02 15:41:51 +01:00

33 lines
894 B
V

module builder
import v.parser
import v.pref
import v.gen.x64
pub fn (mut b Builder) build_x64(v_files []string, out_file string) {
$if !linux {
println('v -x64 can only generate Linux binaries for now')
println('You are not on a Linux system, so you will not ' +
'be able to run the resulting executable')
}
b.timing_start('PARSE')
b.parsed_files = parser.parse_files(v_files, b.table, b.pref, b.global_scope)
b.parse_imports()
b.timing_measure('PARSE')
//
b.timing_start('CHECK')
b.checker.check_files(b.parsed_files)
b.timing_measure('CHECK')
//
b.timing_start('x64 GEN')
x64.gen(b.parsed_files, b.table, out_file, b.pref)
b.timing_measure('x64 GEN')
}
pub fn (mut b Builder) compile_x64() {
// v.files << v.v_files_from_dir(os.join_path(v.pref.vlib_path,'builtin','bare'))
files := [b.pref.path]
b.set_module_lookup_paths()
b.build_x64(files, b.pref.out_name)
}