builder: add comment about the goal of cflags.c_options_only_object_files() in cross compilation

pull/7189/head
Delyan Angelov 2020-12-07 20:35:04 +02:00
parent 4b4733d6b4
commit 1914bc790b
No known key found for this signature in database
GPG Key ID: 66886C0F12D595ED
1 changed files with 1 additions and 0 deletions

View File

@ -723,6 +723,7 @@ fn (mut c Builder) cc_windows_cross() {
libs += ' "$pref.default_module_path/vlib/${imp}.o"'
}
}
// add the thirdparty .o files, produced by all the #flag directives:
args += ' ' + cflags.c_options_only_object_files() + ' '
args += ' $c.out_name_c '
args += if c.pref.ccompiler == 'msvc' { cflags.c_options_after_target_msvc() } else { cflags.c_options_after_target() }