2019-07-23 23:23:13 +02:00
|
|
|
module main
|
|
|
|
|
|
|
|
import os
|
|
|
|
|
2019-07-24 13:49:00 +02:00
|
|
|
#flag windows -l shell32
|
2019-07-23 23:23:13 +02:00
|
|
|
|
2019-10-11 02:55:54 +02:00
|
|
|
// RegOpenKeyExA etc
|
|
|
|
#flag windows -l advapi32
|
|
|
|
|
2019-07-23 23:23:13 +02:00
|
|
|
struct MsvcResult {
|
2019-09-03 15:09:43 +02:00
|
|
|
full_cl_exe_path string
|
2019-08-12 13:17:26 +02:00
|
|
|
exe_path string
|
2019-07-23 23:23:13 +02:00
|
|
|
|
2019-08-12 13:17:26 +02:00
|
|
|
um_lib_path string
|
|
|
|
ucrt_lib_path string
|
|
|
|
vs_lib_path string
|
2019-07-23 23:23:13 +02:00
|
|
|
|
2019-08-12 13:17:26 +02:00
|
|
|
um_include_path string
|
|
|
|
ucrt_include_path string
|
|
|
|
vs_include_path string
|
|
|
|
shared_include_path string
|
2019-07-23 23:23:13 +02:00
|
|
|
}
|
|
|
|
|
2019-07-25 12:29:24 +02:00
|
|
|
// Mimics a HKEY
|
|
|
|
type RegKey voidptr
|
|
|
|
|
|
|
|
// Taken from the windows SDK
|
|
|
|
const (
|
|
|
|
HKEY_LOCAL_MACHINE = RegKey(0x80000002)
|
|
|
|
KEY_QUERY_VALUE = (0x0001)
|
|
|
|
KEY_WOW64_32KEY = (0x0200)
|
|
|
|
KEY_ENUMERATE_SUB_KEYS = (0x0008)
|
|
|
|
)
|
|
|
|
|
2019-10-07 00:31:01 +02:00
|
|
|
// Given a root key look for one of the subkeys in 'versions' and get the path
|
2019-08-10 10:26:42 +02:00
|
|
|
fn find_windows_kit_internal(key RegKey, versions []string) ?string {
|
2019-08-12 13:17:26 +02:00
|
|
|
$if windows {
|
|
|
|
for version in versions {
|
|
|
|
required_bytes := 0 // TODO mut
|
|
|
|
result := C.RegQueryValueExW(key, version.to_wide(), 0, 0, 0, &required_bytes)
|
2019-07-25 12:29:24 +02:00
|
|
|
|
2019-08-12 13:17:26 +02:00
|
|
|
length := required_bytes / 2
|
2019-07-25 12:29:24 +02:00
|
|
|
|
2019-08-12 13:17:26 +02:00
|
|
|
if result != 0 {
|
|
|
|
continue
|
|
|
|
}
|
2019-07-25 12:29:24 +02:00
|
|
|
|
2019-08-12 13:17:26 +02:00
|
|
|
alloc_length := (required_bytes + 2)
|
2019-07-25 12:29:24 +02:00
|
|
|
|
2019-08-12 13:17:26 +02:00
|
|
|
mut value := &u16(malloc(alloc_length))
|
2019-09-21 17:21:45 +02:00
|
|
|
if isnil(value) {
|
2019-08-12 13:17:26 +02:00
|
|
|
continue
|
|
|
|
}
|
2019-07-25 12:29:24 +02:00
|
|
|
|
2019-08-12 13:17:26 +02:00
|
|
|
result2 := C.RegQueryValueExW(key, version.to_wide(), 0, 0, value, &alloc_length)
|
2019-07-25 12:29:24 +02:00
|
|
|
|
2019-08-12 13:17:26 +02:00
|
|
|
if result2 != 0 {
|
|
|
|
continue
|
|
|
|
}
|
2019-07-25 12:29:24 +02:00
|
|
|
|
2019-08-12 13:17:26 +02:00
|
|
|
// We might need to manually null terminate this thing
|
|
|
|
// So just make sure that we do that
|
|
|
|
if (value[length - 1] != u16(0)) {
|
|
|
|
value[length] = u16(0)
|
|
|
|
}
|
2019-07-25 12:29:24 +02:00
|
|
|
|
2019-08-12 13:17:26 +02:00
|
|
|
return string_from_wide(value)
|
|
|
|
}
|
2019-08-10 10:26:42 +02:00
|
|
|
}
|
|
|
|
return error('windows kit not found')
|
2019-07-23 23:23:13 +02:00
|
|
|
}
|
|
|
|
|
2019-07-25 12:29:24 +02:00
|
|
|
struct WindowsKit {
|
|
|
|
um_lib_path string
|
|
|
|
ucrt_lib_path string
|
2019-07-23 23:23:13 +02:00
|
|
|
|
2019-07-25 12:29:24 +02:00
|
|
|
um_include_path string
|
|
|
|
ucrt_include_path string
|
|
|
|
shared_include_path string
|
|
|
|
}
|
|
|
|
|
|
|
|
// Try and find the root key for installed windows kits
|
|
|
|
fn find_windows_kit_root() ?WindowsKit {
|
2019-08-12 13:17:26 +02:00
|
|
|
$if windows {
|
|
|
|
root_key := RegKey(0)
|
|
|
|
rc := C.RegOpenKeyExA(
|
|
|
|
HKEY_LOCAL_MACHINE, 'SOFTWARE\\Microsoft\\Windows Kits\\Installed Roots', 0, KEY_QUERY_VALUE | KEY_WOW64_32KEY | KEY_ENUMERATE_SUB_KEYS, &root_key)
|
|
|
|
|
|
|
|
defer {C.RegCloseKey(root_key)}
|
|
|
|
|
|
|
|
if rc != 0 {
|
|
|
|
return error('Unable to open root key')
|
|
|
|
}
|
|
|
|
// Try and find win10 kit
|
|
|
|
kit_root := find_windows_kit_internal(root_key, ['KitsRoot10', 'KitsRoot81']) or {
|
|
|
|
return error('Unable to find a windows kit')
|
|
|
|
}
|
2019-07-25 12:29:24 +02:00
|
|
|
|
2019-08-12 13:17:26 +02:00
|
|
|
kit_lib := kit_root + 'Lib'
|
2019-07-23 23:23:13 +02:00
|
|
|
|
2019-08-12 13:17:26 +02:00
|
|
|
// println(kit_lib)
|
2019-07-23 23:23:13 +02:00
|
|
|
|
2019-08-12 13:17:26 +02:00
|
|
|
files := os.ls(kit_lib)
|
|
|
|
mut highest_path := ''
|
|
|
|
mut highest_int := 0
|
|
|
|
for f in files {
|
|
|
|
no_dot := f.replace('.', '')
|
|
|
|
v_int := no_dot.int()
|
2019-07-23 23:23:13 +02:00
|
|
|
|
2019-08-12 13:17:26 +02:00
|
|
|
if v_int > highest_int {
|
|
|
|
highest_int = v_int
|
|
|
|
highest_path = f
|
|
|
|
}
|
2019-07-23 23:23:13 +02:00
|
|
|
}
|
2019-07-25 12:29:24 +02:00
|
|
|
|
2019-08-12 13:17:26 +02:00
|
|
|
kit_lib_highest := kit_lib + '\\$highest_path'
|
|
|
|
kit_include_highest := kit_lib_highest.replace('Lib', 'Include')
|
2019-07-25 12:29:24 +02:00
|
|
|
|
2019-08-12 13:17:26 +02:00
|
|
|
// println('$kit_lib_highest $kit_include_highest')
|
2019-07-25 12:29:24 +02:00
|
|
|
|
2019-08-12 13:17:26 +02:00
|
|
|
return WindowsKit {
|
|
|
|
um_lib_path: kit_lib_highest + '\\um\\x64'
|
|
|
|
ucrt_lib_path: kit_lib_highest + '\\ucrt\\x64'
|
2019-07-25 12:29:24 +02:00
|
|
|
|
2019-08-12 13:17:26 +02:00
|
|
|
um_include_path: kit_include_highest + '\\um'
|
|
|
|
ucrt_include_path: kit_include_highest + '\\ucrt'
|
|
|
|
shared_include_path: kit_include_highest + '\\shared'
|
|
|
|
}
|
2019-07-25 12:29:24 +02:00
|
|
|
}
|
2019-08-12 13:17:26 +02:00
|
|
|
return error('Host OS does not support funding a windows kit')
|
2019-07-25 12:29:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
struct VsInstallation {
|
|
|
|
include_path string
|
|
|
|
lib_path string
|
|
|
|
exe_path string
|
|
|
|
}
|
|
|
|
|
|
|
|
fn find_vs() ?VsInstallation {
|
2019-08-12 13:17:26 +02:00
|
|
|
$if !windows {
|
|
|
|
return error('Host OS does not support finding a Vs installation')
|
|
|
|
}
|
2019-07-25 12:29:24 +02:00
|
|
|
// Emily:
|
|
|
|
// VSWhere is guaranteed to be installed at this location now
|
2019-10-07 00:31:01 +02:00
|
|
|
// If its not there then end user needs to update their visual studio
|
2019-07-25 12:29:24 +02:00
|
|
|
// installation!
|
2019-10-06 15:27:50 +02:00
|
|
|
res := os.exec('""%ProgramFiles(x86)%\\Microsoft Visual Studio\\Installer\\vswhere.exe" -latest -prerelease -products * -requires Microsoft.VisualStudio.Component.VC.Tools.x86.x64 -property installationPath"') or {
|
2019-08-10 10:26:42 +02:00
|
|
|
return error(err)
|
2019-08-08 07:30:05 +02:00
|
|
|
}
|
2019-07-25 12:29:24 +02:00
|
|
|
// println('res: "$res"')
|
|
|
|
|
2019-08-17 19:21:59 +02:00
|
|
|
version := os.read_file('$res.output\\VC\\Auxiliary\\Build\\Microsoft.VCToolsVersion.default.txt') or {
|
2019-07-25 12:29:24 +02:00
|
|
|
println('Unable to find msvc version')
|
|
|
|
return error('Unable to find vs installation')
|
|
|
|
}
|
|
|
|
|
|
|
|
// println('version: $version')
|
|
|
|
|
|
|
|
v := if version.ends_with('\n') {
|
|
|
|
version.left(version.len - 2)
|
|
|
|
} else {
|
|
|
|
version
|
|
|
|
}
|
|
|
|
|
2019-08-17 19:21:59 +02:00
|
|
|
lib_path := '$res.output\\VC\\Tools\\MSVC\\$v\\lib\\x64'
|
|
|
|
include_path := '$res.output\\VC\\Tools\\MSVC\\$v\\include'
|
2019-07-25 12:29:24 +02:00
|
|
|
|
|
|
|
if os.file_exists('$lib_path\\vcruntime.lib') {
|
2019-08-17 19:21:59 +02:00
|
|
|
p := '$res.output\\VC\\Tools\\MSVC\\$v\\bin\\Hostx64\\x64'
|
2019-07-25 12:29:24 +02:00
|
|
|
|
|
|
|
// println('$lib_path $include_path')
|
|
|
|
|
|
|
|
return VsInstallation{
|
|
|
|
exe_path: p
|
|
|
|
lib_path: lib_path
|
|
|
|
include_path: include_path
|
2019-07-23 23:23:13 +02:00
|
|
|
}
|
2019-07-25 12:29:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
println('Unable to find vs installation (attempted to use lib path "$lib_path")')
|
|
|
|
return error('Unable to find vs exe folder')
|
|
|
|
}
|
2019-07-23 23:23:13 +02:00
|
|
|
|
2019-07-25 12:29:24 +02:00
|
|
|
fn find_msvc() ?MsvcResult {
|
|
|
|
$if windows {
|
|
|
|
wk := find_windows_kit_root() or {
|
|
|
|
return error('Unable to find windows sdk')
|
|
|
|
}
|
|
|
|
vs := find_vs() or {
|
|
|
|
return error('Unable to find visual studio')
|
|
|
|
}
|
2019-07-23 23:23:13 +02:00
|
|
|
|
2019-07-25 12:29:24 +02:00
|
|
|
return MsvcResult {
|
2019-09-03 15:09:43 +02:00
|
|
|
full_cl_exe_path: os.realpath( vs.exe_path + os.PathSeparator + 'cl.exe' )
|
2019-07-25 12:29:24 +02:00
|
|
|
exe_path: vs.exe_path,
|
2019-07-23 23:23:13 +02:00
|
|
|
|
2019-07-25 12:29:24 +02:00
|
|
|
um_lib_path: wk.um_lib_path,
|
|
|
|
ucrt_lib_path: wk.ucrt_lib_path,
|
|
|
|
vs_lib_path: vs.lib_path,
|
2019-07-23 23:23:13 +02:00
|
|
|
|
2019-07-25 12:29:24 +02:00
|
|
|
um_include_path: wk.um_include_path,
|
|
|
|
ucrt_include_path: wk.ucrt_include_path,
|
|
|
|
vs_include_path: vs.include_path,
|
|
|
|
shared_include_path: wk.shared_include_path,
|
2019-07-23 23:23:13 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
$else {
|
2019-09-23 23:40:34 +02:00
|
|
|
verror('Cannot find msvc on this OS')
|
2019-08-29 02:30:17 +02:00
|
|
|
return error('msvc not found')
|
2019-07-23 23:23:13 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-10-07 00:31:01 +02:00
|
|
|
pub fn (v mut V) cc_msvc() {
|
2019-07-25 12:29:24 +02:00
|
|
|
r := find_msvc() or {
|
|
|
|
// TODO: code reuse
|
|
|
|
if !v.pref.is_debug && v.out_name_c != 'v.c' && v.out_name_c != 'v_macos.c' {
|
2019-09-03 15:09:43 +02:00
|
|
|
os.rm(v.out_name_c)
|
2019-07-25 12:29:24 +02:00
|
|
|
}
|
2019-09-25 16:59:50 +02:00
|
|
|
verror('Cannot find MSVC on this OS')
|
2019-08-29 02:30:17 +02:00
|
|
|
return
|
2019-07-25 12:29:24 +02:00
|
|
|
}
|
2019-07-23 23:23:13 +02:00
|
|
|
|
2019-09-03 15:09:43 +02:00
|
|
|
out_name_obj := os.realpath( v.out_name_c + '.obj' )
|
2019-08-12 13:17:26 +02:00
|
|
|
|
2019-07-25 12:29:24 +02:00
|
|
|
// Default arguments
|
2019-08-12 13:17:26 +02:00
|
|
|
|
|
|
|
// volatile:ms enables atomic volatile (gcc _Atomic)
|
|
|
|
// -w: no warnings
|
|
|
|
// 2 unicode defines
|
|
|
|
// /Fo sets the object file name - needed so we can clean up after ourselves properly
|
2019-09-17 13:56:32 +02:00
|
|
|
mut a := ['-w', '/we4013', '/volatile:ms', '/Fo"$out_name_obj"']
|
2019-07-23 23:23:13 +02:00
|
|
|
|
|
|
|
if v.pref.is_prod {
|
|
|
|
a << '/O2'
|
|
|
|
a << '/MD'
|
2019-10-04 15:09:45 +02:00
|
|
|
a << '/Zi'
|
|
|
|
a << '/DNDEBUG'
|
2019-07-23 23:23:13 +02:00
|
|
|
} else {
|
2019-10-04 15:09:45 +02:00
|
|
|
a << '/Zi'
|
2019-07-23 23:23:13 +02:00
|
|
|
a << '/MDd'
|
|
|
|
}
|
|
|
|
|
|
|
|
if v.pref.is_so {
|
|
|
|
if !v.out_name.ends_with('.dll') {
|
|
|
|
v.out_name = v.out_name + '.dll'
|
|
|
|
}
|
|
|
|
|
|
|
|
// Build dll
|
|
|
|
a << '/LD'
|
|
|
|
} else if !v.out_name.ends_with('.exe') {
|
|
|
|
v.out_name = v.out_name + '.exe'
|
|
|
|
}
|
|
|
|
|
2019-09-03 15:09:43 +02:00
|
|
|
v.out_name = os.realpath( v.out_name )
|
|
|
|
|
2019-10-09 06:22:33 +02:00
|
|
|
//alibs := []string // builtin.o os.o http.o etc
|
2019-09-10 16:36:14 +02:00
|
|
|
if v.pref.build_mode == .build_module {
|
2019-07-23 23:23:13 +02:00
|
|
|
}
|
|
|
|
else if v.pref.build_mode == .default_mode {
|
2019-10-09 06:10:33 +02:00
|
|
|
/*
|
2019-09-29 03:54:12 +02:00
|
|
|
b := os.realpath( '$v_modules_path/vlib/builtin.obj' )
|
2019-09-03 15:09:43 +02:00
|
|
|
alibs << '"$b"'
|
|
|
|
if !os.file_exists(b) {
|
2019-07-23 23:23:13 +02:00
|
|
|
println('`builtin.obj` not found')
|
|
|
|
exit(1)
|
|
|
|
}
|
|
|
|
for imp in v.table.imports {
|
|
|
|
if imp == 'webview' {
|
|
|
|
continue
|
|
|
|
}
|
2019-09-29 03:54:12 +02:00
|
|
|
alibs << '"' + os.realpath( '$v_modules_path/vlib/${imp}.obj' ) + '"'
|
2019-07-23 23:23:13 +02:00
|
|
|
}
|
2019-10-09 06:10:33 +02:00
|
|
|
*/
|
2019-07-23 23:23:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if v.pref.sanitize {
|
|
|
|
println('Sanitize not supported on msvc.')
|
|
|
|
}
|
|
|
|
|
|
|
|
// The C file we are compiling
|
|
|
|
//a << '"$TmpPath/$v.out_name_c"'
|
2019-09-03 15:09:43 +02:00
|
|
|
a << '"' + os.realpath( v.out_name_c ) + '"'
|
2019-07-23 23:23:13 +02:00
|
|
|
|
2019-08-12 13:17:26 +02:00
|
|
|
// Emily:
|
|
|
|
// Not all of these are needed (but the compiler should discard them if they are not used)
|
|
|
|
// these are the defaults used by msbuild and visual studio
|
2019-07-25 12:29:24 +02:00
|
|
|
mut real_libs := [
|
|
|
|
'kernel32.lib',
|
|
|
|
'user32.lib',
|
|
|
|
'gdi32.lib',
|
|
|
|
'winspool.lib',
|
|
|
|
'comdlg32.lib',
|
|
|
|
'advapi32.lib',
|
|
|
|
'shell32.lib',
|
|
|
|
'ole32.lib',
|
|
|
|
'oleaut32.lib',
|
|
|
|
'uuid.lib',
|
|
|
|
'odbc32.lib',
|
2019-09-20 16:03:13 +02:00
|
|
|
'odbccp32.lib'
|
2019-07-25 12:29:24 +02:00
|
|
|
]
|
|
|
|
|
2019-09-22 23:51:59 +02:00
|
|
|
sflags := v.get_os_cflags().msvc_string_flags()
|
|
|
|
real_libs << sflags.real_libs
|
|
|
|
inc_paths := sflags.inc_paths
|
|
|
|
lib_paths := sflags.lib_paths
|
|
|
|
other_flags := sflags.other_flags
|
2019-07-23 23:23:13 +02:00
|
|
|
|
|
|
|
// Include the base paths
|
2019-09-08 11:02:03 +02:00
|
|
|
a << '-I "$r.ucrt_include_path"'
|
|
|
|
a << '-I "$r.vs_include_path"'
|
|
|
|
a << '-I "$r.um_include_path"'
|
|
|
|
a << '-I "$r.shared_include_path"'
|
2019-09-03 15:09:43 +02:00
|
|
|
|
|
|
|
a << inc_paths
|
2019-07-23 23:23:13 +02:00
|
|
|
|
|
|
|
a << other_flags
|
|
|
|
|
2019-08-12 13:17:26 +02:00
|
|
|
// Libs are passed to cl.exe which passes them to the linker
|
2019-07-23 23:23:13 +02:00
|
|
|
a << real_libs.join(' ')
|
|
|
|
|
|
|
|
a << '/link'
|
|
|
|
a << '/NOLOGO'
|
2019-09-03 15:09:43 +02:00
|
|
|
a << '/OUT:"$v.out_name"'
|
2019-07-23 23:23:13 +02:00
|
|
|
a << '/LIBPATH:"$r.ucrt_lib_path"'
|
|
|
|
a << '/LIBPATH:"$r.um_lib_path"'
|
|
|
|
a << '/LIBPATH:"$r.vs_lib_path"'
|
2019-10-04 15:09:45 +02:00
|
|
|
a << '/DEBUG:FULL' // required for prod builds to generate PDB
|
2019-07-23 23:23:13 +02:00
|
|
|
|
2019-10-04 15:09:45 +02:00
|
|
|
if v.pref.is_prod {
|
|
|
|
a << '/INCREMENTAL:NO' // Disable incremental linking
|
|
|
|
a << '/OPT:REF'
|
|
|
|
a << '/OPT:ICF'
|
2019-07-23 23:23:13 +02:00
|
|
|
}
|
|
|
|
|
2019-09-22 23:51:59 +02:00
|
|
|
a << lib_paths
|
|
|
|
|
2019-07-23 23:23:13 +02:00
|
|
|
args := a.join(' ')
|
|
|
|
|
2019-10-07 00:31:01 +02:00
|
|
|
cmd := '""$r.full_cl_exe_path" $args"'
|
|
|
|
// It is hard to see it at first, but the quotes above ARE balanced :-| ...
|
2019-09-03 15:09:43 +02:00
|
|
|
// Also the double quotes at the start ARE needed.
|
2019-08-30 23:59:21 +02:00
|
|
|
if v.pref.show_c_cmd || v.pref.is_verbose {
|
2019-09-03 15:09:43 +02:00
|
|
|
println('\n========== cl cmd line:')
|
2019-08-30 23:59:21 +02:00
|
|
|
println(cmd)
|
2019-09-03 15:09:43 +02:00
|
|
|
println('==========\n')
|
2019-08-30 23:59:21 +02:00
|
|
|
}
|
|
|
|
|
2019-07-23 23:23:13 +02:00
|
|
|
// println('$cmd')
|
|
|
|
|
2019-08-28 12:06:25 +02:00
|
|
|
res := os.exec(cmd) or {
|
2019-08-08 07:30:05 +02:00
|
|
|
println(err)
|
2019-09-23 23:40:34 +02:00
|
|
|
verror('msvc error')
|
2019-08-29 02:30:17 +02:00
|
|
|
return
|
2019-07-23 23:23:13 +02:00
|
|
|
}
|
2019-08-28 12:06:25 +02:00
|
|
|
if res.exit_code != 0 {
|
2019-09-23 23:40:34 +02:00
|
|
|
verror(res.output)
|
2019-08-28 12:06:25 +02:00
|
|
|
}
|
2019-08-08 07:30:05 +02:00
|
|
|
// println(res)
|
|
|
|
// println('C OUTPUT:')
|
2019-07-23 23:23:13 +02:00
|
|
|
|
|
|
|
if !v.pref.is_debug && v.out_name_c != 'v.c' && v.out_name_c != 'v_macos.c' {
|
2019-09-03 15:09:43 +02:00
|
|
|
os.rm(v.out_name_c)
|
2019-08-12 13:17:26 +02:00
|
|
|
}
|
2019-07-23 23:23:13 +02:00
|
|
|
|
2019-08-20 15:32:15 +02:00
|
|
|
// Always remove the object file - it is completely unnecessary
|
2019-09-03 15:09:43 +02:00
|
|
|
os.rm(out_name_obj)
|
2019-07-23 23:23:13 +02:00
|
|
|
}
|
2019-09-22 23:51:59 +02:00
|
|
|
fn build_thirdparty_obj_file_with_msvc(path string, moduleflags []CFlag) {
|
2019-07-25 12:29:24 +02:00
|
|
|
msvc := find_msvc() or {
|
|
|
|
println('Could not find visual studio')
|
|
|
|
return
|
|
|
|
}
|
2019-07-23 23:23:13 +02:00
|
|
|
|
2019-09-06 14:12:04 +02:00
|
|
|
// msvc expects .obj not .o
|
|
|
|
mut obj_path := '${path}bj'
|
2019-07-23 23:23:13 +02:00
|
|
|
|
2019-09-06 14:12:04 +02:00
|
|
|
obj_path = os.realpath(obj_path)
|
2019-07-23 23:23:13 +02:00
|
|
|
|
|
|
|
if os.file_exists(obj_path) {
|
2019-09-03 15:09:43 +02:00
|
|
|
println('$obj_path already build.')
|
2019-10-07 00:31:01 +02:00
|
|
|
return
|
|
|
|
}
|
2019-09-03 15:09:43 +02:00
|
|
|
|
2019-10-07 00:31:01 +02:00
|
|
|
println('$obj_path not found, building it (with msvc)...')
|
2019-09-06 14:12:04 +02:00
|
|
|
parent := os.dir(obj_path)
|
2019-07-23 23:23:13 +02:00
|
|
|
files := os.ls(parent)
|
|
|
|
|
2019-10-07 00:31:01 +02:00
|
|
|
mut cfiles := ''
|
2019-07-23 23:23:13 +02:00
|
|
|
for file in files {
|
2019-10-07 00:31:01 +02:00
|
|
|
if file.ends_with('.c') {
|
2019-09-03 15:09:43 +02:00
|
|
|
cfiles += '"' + os.realpath( parent + os.PathSeparator + file ) + '" '
|
2019-09-06 14:12:04 +02:00
|
|
|
}
|
2019-07-23 23:23:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
include_string := '-I "$msvc.ucrt_include_path" -I "$msvc.vs_include_path" -I "$msvc.um_include_path" -I "$msvc.shared_include_path"'
|
|
|
|
|
2019-09-03 15:09:43 +02:00
|
|
|
//println('cfiles: $cfiles')
|
2019-07-23 23:23:13 +02:00
|
|
|
|
2019-09-22 23:51:59 +02:00
|
|
|
btarget := moduleflags.c_options_before_target()
|
|
|
|
atarget := moduleflags.c_options_after_target()
|
2019-10-04 15:09:45 +02:00
|
|
|
cmd := '""$msvc.full_cl_exe_path" /volatile:ms /Zi /DNDEBUG $include_string /c $btarget $cfiles $atarget /Fo"$obj_path""'
|
2019-09-03 15:09:43 +02:00
|
|
|
//NB: the quotes above ARE balanced.
|
|
|
|
println('thirdparty cmd line: $cmd')
|
|
|
|
res := os.exec(cmd) or {
|
2019-09-23 23:40:34 +02:00
|
|
|
verror(err)
|
2019-08-29 02:30:17 +02:00
|
|
|
return
|
2019-08-08 07:30:05 +02:00
|
|
|
}
|
2019-08-17 19:21:59 +02:00
|
|
|
println(res.output)
|
2019-08-12 13:17:26 +02:00
|
|
|
}
|
2019-07-25 15:05:44 +02:00
|
|
|
|
2019-09-22 23:51:59 +02:00
|
|
|
|
|
|
|
struct MsvcStringFlags {
|
|
|
|
mut:
|
|
|
|
real_libs []string
|
|
|
|
inc_paths []string
|
|
|
|
lib_paths []string
|
|
|
|
other_flags []string
|
|
|
|
}
|
|
|
|
|
|
|
|
fn (cflags []CFlag) msvc_string_flags() MsvcStringFlags {
|
|
|
|
mut real_libs := []string
|
|
|
|
mut inc_paths := []string
|
|
|
|
mut lib_paths := []string
|
|
|
|
mut other_flags := []string
|
|
|
|
for flag in cflags {
|
|
|
|
//println('fl: $flag.name | flag arg: $flag.value')
|
|
|
|
// We need to see if the flag contains -l
|
|
|
|
// -l isnt recognised and these libs will be passed straight to the linker
|
|
|
|
// by the compiler
|
|
|
|
if flag.name == '-l' {
|
|
|
|
if flag.value.ends_with('.dll') {
|
2019-09-23 23:40:34 +02:00
|
|
|
verror('MSVC cannot link against a dll (`#flag -l $flag.value`)')
|
2019-09-22 23:51:59 +02:00
|
|
|
}
|
|
|
|
// MSVC has no method of linking against a .dll
|
|
|
|
// TODO: we should look for .defs aswell
|
|
|
|
lib_lib := flag.value + '.lib'
|
|
|
|
real_libs << lib_lib
|
|
|
|
}
|
|
|
|
else if flag.name == '-I' {
|
|
|
|
inc_paths << flag.format()
|
|
|
|
}
|
|
|
|
else if flag.name == '-L' {
|
|
|
|
lib_paths << flag.value
|
|
|
|
lib_paths << flag.value + os.PathSeparator + 'msvc'
|
|
|
|
// The above allows putting msvc specific .lib files in a subfolder msvc/ ,
|
|
|
|
// where gcc will NOT find them, but cl will do...
|
|
|
|
// NB: gcc is smart enough to not need .lib files at all in most cases, the .dll is enough.
|
|
|
|
// When both a msvc .lib file and .dll file are present in the same folder,
|
|
|
|
// as for example for glfw3, compilation with gcc would fail.
|
|
|
|
}
|
|
|
|
else if flag.value.ends_with('.o') {
|
|
|
|
// msvc expects .obj not .o
|
|
|
|
other_flags << '"${flag.value}bj"'
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
other_flags << flag.value
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
mut lpaths := []string
|
|
|
|
for l in lib_paths {
|
|
|
|
lpaths << '/LIBPATH:"' + os.realpath(l) + '"'
|
|
|
|
}
|
|
|
|
|
|
|
|
return MsvcStringFlags{ real_libs, inc_paths, lpaths, other_flags }
|
|
|
|
}
|