From d8622dd3e5d2dfafac772edff654ebdd422f5b36 Mon Sep 17 00:00:00 2001 From: Alexander Medvednikov Date: Wed, 9 Oct 2019 07:10:33 +0300 Subject: [PATCH] fix msvc build --- compiler/msvc.v | 2 ++ 1 file changed, 2 insertions(+) diff --git a/compiler/msvc.v b/compiler/msvc.v index 3d4cd5eb75..f582209777 100644 --- a/compiler/msvc.v +++ b/compiler/msvc.v @@ -254,6 +254,7 @@ pub fn (v mut V) cc_msvc() { if v.pref.build_mode == .build_module { } else if v.pref.build_mode == .default_mode { + /* b := os.realpath( '$v_modules_path/vlib/builtin.obj' ) alibs << '"$b"' if !os.file_exists(b) { @@ -266,6 +267,7 @@ pub fn (v mut V) cc_msvc() { } alibs << '"' + os.realpath( '$v_modules_path/vlib/${imp}.obj' ) + '"' } + */ } if v.pref.sanitize {