We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
-live -cc
-cc msvc
1 parent e475e9d commit 0ea6667Copy full SHA for 0ea6667
vlib/v/live/executable/reloader.c.v
@@ -78,8 +78,8 @@ fn compile_and_reload_shared_lib(mut r live.LiveReloadInfo) !bool {
78
}
79
80
fn compile_lib(mut r live.LiveReloadInfo) ?string {
81
- new_lib_path, new_lib_path_with_extension := current_shared_library_path(mut r)
82
- cmd := '${os.quoted_path(r.vexe)} ${r.vopts} -o ${os.quoted_path(new_lib_path)} ${os.quoted_path(r.original)}'
+ _, new_lib_path_with_extension := current_shared_library_path(mut r)
+ cmd := '${os.quoted_path(r.vexe)} ${r.vopts} -o ${os.quoted_path(new_lib_path_with_extension)} ${os.quoted_path(r.original)}'
83
elog(r, '> compilation cmd: ${cmd}')
84
cwatch := time.new_stopwatch()
85
recompilation_result := os.execute(cmd)
0 commit comments