compiler: allow -debug to work with no prebuilt modules. only use when prebuilt files exist (#2283)
* only use prebuilt modules if they exist (builtin)pull/2285/head
parent
7423b21429
commit
1b79964827
|
@ -111,7 +111,12 @@ fn (v mut V) cc() {
|
||||||
a << '-c'
|
a << '-c'
|
||||||
}
|
}
|
||||||
else if v.pref.is_debug {
|
else if v.pref.is_debug {
|
||||||
libs = '$v_modules_path/vlib/builtin.o '
|
builtin_o_path := '$v_modules_path/vlib/builtin.o'
|
||||||
|
if os.file_exists(builtin_o_path) {
|
||||||
|
libs = builtin_o_path
|
||||||
|
} else {
|
||||||
|
println('$builtin_o_path not found... build module builtin')
|
||||||
|
}
|
||||||
// '$v_modules_path/vlib/strings.o '+
|
// '$v_modules_path/vlib/strings.o '+
|
||||||
// '$v_modules_path/vlib/math.o '
|
// '$v_modules_path/vlib/math.o '
|
||||||
/*
|
/*
|
||||||
|
|
Loading…
Reference in New Issue