Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

builder: fix msvc build thirdparty obj file from .cpp #22789

Merged
merged 3 commits into from
Nov 8, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion cmd/tools/modules/testing/common.v
Original file line number Diff line number Diff line change
@@ -226,7 +226,6 @@ pub fn new_test_session(_vargs string, will_compile bool) TestSession {
skip_files << 'examples/coroutines/coroutines_bench.v'
$if msvc {
skip_files << 'vlib/v/tests/consts/const_comptime_eval_before_vinit_test.v' // _constructor used
skip_files << 'vlib/v/tests/project_with_cpp_code/compiling_cpp_files_with_a_cplusplus_compiler_test.c.v'
}
$if solaris {
skip_files << 'examples/pico/pico.v'
6 changes: 5 additions & 1 deletion vlib/v/builder/msvc_windows.v
Original file line number Diff line number Diff line change
@@ -401,7 +401,11 @@ fn (mut v Builder) build_thirdparty_obj_file_with_msvc(mod string, path string,
}
println('${obj_path} not found, building it (with msvc)...')
flush_stdout()
cfile := '${path_without_o_postfix}.c'
cfile := if os.exists('${path_without_o_postfix}.c') {
'${path_without_o_postfix}.c'
} else {
'${path_without_o_postfix}.cpp'
}
flags := msvc_string_flags(moduleflags)
inc_dirs := flags.inc_paths.join(' ')
defines := flags.defines.join(' ')

Unchanged files with check annotations Beta

// will be reported.
fn main() {
mut y := unsafe { malloc(1000) }

Check warning on line 8 in vlib/v/tests/testcase_leak.vv

GitHub Actions / tcc

unused variable: `y`

Check warning on line 8 in vlib/v/tests/testcase_leak.vv

GitHub Actions / tcc

unused variable: `y`
// unsafe { free(y) } // leak if commented out
y = unsafe { nil }
gc_check_leaks()
}
a_as_first := m.keys()
a_as_last := m.keys().reverse()
mut a_as_middle := a_as_first[1..a_as_first.len / 2]

Check notice on line 32 in vlib/v/tests/bench/bench_string_key_in_map_vs_string_value_in_array.v

GitHub Actions / tcc

an implicit clone of the slice was done here
a_as_middle << key
a_as_middle << a_as_first[a_as_first.len / 2..]
eprintln('> m.len: ${m.len} | a_as_first.len: ${a_as_first.len} | a_as_last.len: ${a_as_last.len} | a_as_middle.len: ${a_as_middle.len}')
// The V compiler itself for example registers a function with at_exit(), for showing timers.
// Without a way to distinguish, that we are in a memory panic, that would just display a second panic,
// which would be less clear to the user.
__global v_memory_panic = false

Check warning on line 386 in vlib/builtin/builtin.c.v

GitHub Actions / gcc

globals are not supported yet

Check warning on line 386 in vlib/builtin/builtin.c.v

GitHub Actions / clang

globals are not supported yet
@[noreturn]
fn _memory_panic(fname string, size isize) {
panic('memory allocation failure')
}
__global total_m = i64(0)

Check warning on line 406 in vlib/builtin/builtin.c.v

GitHub Actions / gcc

globals are not supported yet

Check warning on line 406 in vlib/builtin/builtin.c.v

GitHub Actions / clang

globals are not supported yet
// malloc dynamically allocates a `n` bytes block of memory on the heap.
// malloc returns a `byteptr` pointing to the memory address of the allocated space.
// unlike the `calloc` family of functions - malloc will not zero the memory block.
// more convenient to just use `os.args` or call `arguments()` instead.
@[markused]
__global g_main_argc = int(0)

Check warning on line 766 in vlib/builtin/builtin.c.v

GitHub Actions / gcc

globals are not supported yet

Check warning on line 766 in vlib/builtin/builtin.c.v

GitHub Actions / clang

globals are not supported yet
@[markused]
__global g_main_argv = unsafe { nil }

Check warning on line 769 in vlib/builtin/builtin.c.v

GitHub Actions / gcc

globals are not supported yet

Check warning on line 769 in vlib/builtin/builtin.c.v

GitHub Actions / clang

globals are not supported yet
// arguments returns the command line arguments, used for starting the current program as a V array of strings.
// The first string in the array (index 0), is the name of the program, used for invoking the program.
}
// will be filled in cgen
__global as_cast_type_indexes []VCastTypeIndexName

Check warning on line 25 in vlib/builtin/builtin.v

GitHub Actions / gcc

globals are not supported yet

Check warning on line 25 in vlib/builtin/builtin.v

GitHub Actions / clang

globals are not supported yet
fn __as_cast(obj voidptr, obj_type int, expected_type int) voidptr {
if obj_type != expected_type {