v/vlib/v/builder/cc.v

641 lines
19 KiB
V
Raw Normal View History

2020-01-23 21:04:46 +01:00
// Copyright (c) 2019-2020 Alexander Medvednikov. All rights reserved.
2019-08-23 11:05:16 +02:00
// Use of this source code is governed by an MIT license
// that can be found in the LICENSE file.
2020-04-07 00:44:19 +02:00
module builder
2019-08-23 11:05:16 +02:00
2020-04-25 17:49:16 +02:00
import os
import time
import v.cflag
import v.pref
import v.util
import term
2019-08-23 11:05:16 +02:00
2019-10-25 17:53:45 +02:00
fn todo() {
}
2019-10-25 17:53:45 +02:00
2020-04-07 00:44:19 +02:00
fn (v &Builder) no_cc_installed() bool {
2019-12-18 18:07:32 +01:00
$if windows {
2020-04-25 17:49:16 +02:00
os.exec('$v.pref.ccompiler -v') or {
2020-04-07 00:44:19 +02:00
if v.pref.is_verbose {
println('C compiler not found, trying to build with msvc...')
}
return true
2019-12-12 12:27:47 +01:00
}
}
return false
}
2020-04-25 17:49:16 +02:00
fn (mut v Builder) cc() {
2019-12-18 18:07:32 +01:00
if os.executable().contains('vfmt') {
return
}
2020-04-07 00:44:19 +02:00
if v.pref.is_verbose {
println('builder.cc() pref.out_name="$v.pref.out_name"')
}
v.build_thirdparty_obj_files()
2020-02-20 11:33:01 +01:00
vexe := pref.vexe_path()
2020-03-07 22:26:26 +01:00
vdir := os.dir(vexe)
2019-09-14 22:48:30 +02:00
// Just create a C/JavaScript file and exit
// for example: `v -o v.c compiler`
2020-02-09 10:08:04 +01:00
ends_with_c := v.pref.out_name.ends_with('.c')
ends_with_js := v.pref.out_name.ends_with('.js')
if ends_with_c || ends_with_js {
// Translating V code to JS by launching vjs.
// Using a separate process for V.js is for performance mostly,
// to avoid constant is_js checks.
2019-09-14 22:48:30 +02:00
$if !js {
if ends_with_js {
2019-09-14 22:48:30 +02:00
vjs_path := vexe + 'js'
if !os.exists(vjs_path) {
2019-09-14 22:48:30 +02:00
println('V.js compiler not found, building...')
// Build V.js. Specifying `-os js` makes V include
// only _js.v files and ignore _c.v files.
2020-02-09 10:08:04 +01:00
ret := os.system('$vexe -o $vjs_path -os js $vdir/cmd/v')
2019-09-14 22:48:30 +02:00
if ret == 0 {
println('Done.')
2020-04-25 17:49:16 +02:00
} else {
2019-09-14 22:48:30 +02:00
println('Failed.')
exit(1)
}
}
2020-02-09 10:08:04 +01:00
ret := os.system('$vjs_path -o $v.pref.out_name $v.pref.path')
2019-09-14 22:48:30 +02:00
if ret == 0 {
2020-02-09 10:08:04 +01:00
println('Done. Run it with `node $v.pref.out_name`')
2019-09-16 18:02:10 +02:00
println('JS backend is at a very early stage.')
}
2019-09-14 22:48:30 +02:00
}
}
// v.out_name_c may be on a different partition than v.out_name
2020-04-25 17:49:16 +02:00
os.mv_by_cp(v.out_name_c, v.pref.out_name) or {
panic(err)
}
2019-08-29 23:07:54 +02:00
exit(0)
}
2019-08-23 11:05:16 +02:00
// Cross compiling for Windows
2020-02-09 10:08:04 +01:00
if v.pref.os == .windows {
2019-08-23 11:05:16 +02:00
$if !windows {
v.cc_windows_cross()
return
}
}
$if windows {
if v.pref.ccompiler == 'msvc' || v.no_cc_installed() {
2019-08-23 11:05:16 +02:00
v.cc_msvc()
return
}
}
2019-11-16 23:14:05 +01:00
// arguments for the C compiler
2020-04-25 17:49:16 +02:00
mut a := [ v.pref.cflags, '-std=gnu11', '-Wall', '-Wextra',
// TODO : activate -Werror once no warnings remain
// '-Werror',
// TODO : try and remove the below workaround options when the corresponding
// warnings are totally fixed/removed
'-Wno-unused-variable',
// '-Wno-unused-but-set-variable',
'-Wno-unused-parameter', '-Wno-unused-result', '-Wno-unused-function', '-Wno-missing-braces',
'-Wno-unused-label'
]
2020-05-01 19:34:27 +02:00
mut linker_flags := []string{}
2019-10-12 15:05:24 +02:00
// TCC on Linux by default, unless -cc was provided
// TODO if -cc = cc, TCC is still used, default compiler should be
// used instead.
if v.pref.fast {
$if linux {
$if !android {
tcc_3rd := '$vdir/thirdparty/tcc/bin/tcc'
// println('tcc third "$tcc_3rd"')
tcc_path := '/var/tmp/tcc/bin/tcc'
if os.exists(tcc_3rd) && !os.exists(tcc_path) {
// println('moving tcc')
// if there's tcc in thirdparty/, that means this is
// a prebuilt V_linux.zip.
// Until the libtcc1.a bug is fixed, we neeed to move
// it to /var/tmp/
os.system('mv $vdir/thirdparty/tcc /var/tmp/')
}
if v.pref.ccompiler == 'cc' && os.exists(tcc_path) {
// TODO tcc bug, needs an empty libtcc1.a fila
// os.mkdir('/var/tmp/tcc/lib/tcc/') or { panic(err) }
// os.create('/var/tmp/tcc/lib/tcc/libtcc1.a')
v.pref.ccompiler = tcc_path
a << '-m64'
}
}
} $else {
verror('-fast is only supported on Linux right now')
}
2019-10-31 18:32:34 +01:00
}
2020-04-25 17:49:16 +02:00
if !v.pref.is_shared && v.pref.build_mode != .build_module && os.user_os() == 'windows' &&
!v.pref.out_name.ends_with('.exe') {
2020-02-09 10:08:04 +01:00
v.pref.out_name += '.exe'
}
// linux_host := os.user_os() == 'linux'
2020-02-09 10:08:04 +01:00
v.log('cc() isprod=$v.pref.is_prod outname=$v.pref.out_name')
2020-04-18 17:46:23 +02:00
if v.pref.is_shared {
2020-05-01 19:34:27 +02:00
linker_flags << '-shared'
a << '-fPIC' // -Wl,-z,defs'
2020-02-09 10:08:04 +01:00
v.pref.out_name += '.so'
2019-08-23 11:05:16 +02:00
}
2019-11-14 08:23:44 +01:00
if v.pref.is_bare {
2020-05-01 19:34:27 +02:00
a << '-fno-stack-protector'
a << '-ffreestanding'
linker_flags << '-static'
linker_flags << '-nostdlib'
}
2019-09-10 16:36:14 +02:00
if v.pref.build_mode == .build_module {
2019-10-04 14:48:09 +02:00
// Create the modules & out directory if it's not there.
mut out_dir := if v.pref.path.starts_with('vlib') { '${pref.default_module_path}${os.path_separator}cache${os.path_separator}$v.pref.path' } else { '${pref.default_module_path}${os.path_separator}$v.pref.path' }
2020-03-07 22:26:26 +01:00
pdir := out_dir.all_before_last(os.path_separator)
if !os.is_dir(pdir) {
os.mkdir_all(pdir)
}
2020-02-09 10:08:04 +01:00
v.pref.out_name = '${out_dir}.o' // v.out_name
println('Building ${v.pref.out_name}...')
}
debug_mode := v.pref.is_debug
mut debug_options := '-g'
mut optimization_options := '-O2'
mut guessed_compiler := v.pref.ccompiler
if guessed_compiler == 'cc' && v.pref.is_prod {
// deliberately guessing only for -prod builds for performance reasons
2020-04-25 17:49:16 +02:00
if ccversion := os.exec('cc --version') {
if ccversion.exit_code == 0 {
if ccversion.output.contains('This is free software;') && ccversion.output.contains('Free Software Foundation, Inc.') {
guessed_compiler = 'gcc'
}
if ccversion.output.contains('clang version ') {
guessed_compiler = 'clang'
}
}
}
}
//
is_cc_clang := v.pref.ccompiler.contains('clang') || guessed_compiler == 'clang'
2020-04-25 17:49:16 +02:00
is_cc_tcc := v.pref.ccompiler.contains('tcc') || guessed_compiler == 'tcc'
is_cc_gcc := v.pref.ccompiler.contains('gcc') || guessed_compiler == 'gcc'
2020-04-22 01:52:56 +02:00
// is_cc_msvc := v.pref.ccompiler.contains('msvc') || guessed_compiler == 'msvc'
//
if is_cc_clang {
if debug_mode {
debug_options = '-g -O0 -no-pie'
}
2020-02-10 08:57:35 +01:00
optimization_options = '-O3'
mut have_flto := true
$if openbsd {
have_flto = false
}
if have_flto {
optimization_options += ' -flto'
}
}
if is_cc_gcc {
if debug_mode {
debug_options = '-g3 -no-pie'
}
optimization_options = '-O3 -fno-strict-aliasing -flto'
}
if debug_mode {
a << debug_options
2020-03-05 00:45:43 +01:00
$if macos {
a << ' -ferror-limit=5000 '
}
}
2019-08-23 11:05:16 +02:00
if v.pref.is_prod {
a << optimization_options
2019-08-23 11:05:16 +02:00
}
if debug_mode && os.user_os() != 'windows' {
2020-05-01 19:34:27 +02:00
linker_flags << ' -rdynamic ' // needed for nicer symbolic backtraces
}
2020-02-09 10:08:04 +01:00
if v.pref.ccompiler != 'msvc' && v.pref.os != .freebsd {
a << '-Werror=implicit-function-declaration'
}
2020-05-01 19:34:27 +02:00
if v.pref.is_liveshared || v.pref.is_livemain {
2020-04-18 17:46:23 +02:00
if v.pref.os == .linux || os.user_os() == 'linux' {
2020-05-01 19:34:27 +02:00
linker_flags << '-rdynamic'
2020-04-18 17:46:23 +02:00
}
if v.pref.os == .mac || os.user_os() == 'mac' {
a << '-flat_namespace'
}
2019-08-23 11:05:16 +02:00
}
mut libs := '' // builtin.o os.o http.o etc
2019-09-10 16:36:14 +02:00
if v.pref.build_mode == .build_module {
2019-08-23 11:05:16 +02:00
a << '-c'
2020-04-27 14:46:25 +02:00
} else if v.pref.use_cache {
/*
QTODO
builtin_o_path := os.join_path(pref.default_module_path, 'cache', 'vlib', 'builtin.o')
2019-10-31 22:47:11 +01:00
a << builtin_o_path.replace('builtin.o', 'strconv.o') // TODO hack no idea why this is needed
if os.exists(builtin_o_path) {
libs = builtin_o_path
}
else {
println('$builtin_o_path not found... building module builtin')
2020-03-07 22:26:26 +01:00
os.system('$vexe build module vlib${os.path_separator}builtin')
}
2019-08-23 11:05:16 +02:00
for imp in v.table.imports {
if imp.contains('vweb') {
continue
} // not working
if imp == 'webview' {
continue
}
2020-03-07 22:26:26 +01:00
imp_path := imp.replace('.', os.path_separator)
path := '${pref.default_module_path}${os.path_separator}cache${os.path_separator}vlib${os.path_separator}${imp_path}.o'
// println('adding ${imp_path}.o')
if os.exists(path) {
libs += ' ' + path
}
else {
println('$path not found... building module $imp')
2019-10-31 22:57:16 +01:00
if path.ends_with('vlib/ui.o') {
println('copying ui...')
os.cp('$vdir/thirdparty/ui/ui.o', path)or{
panic('error copying ui files')
}
os.cp('$vdir/thirdparty/ui/ui.vh', pref.default_module_path + '/vlib/ui.vh')or{
panic('error copying ui files')
}
}
else {
2020-03-07 22:26:26 +01:00
os.system('$vexe build module vlib${os.path_separator}$imp_path')
2019-10-31 22:57:16 +01:00
}
}
2019-10-31 22:57:16 +01:00
if path.ends_with('vlib/ui.o') {
a << '-framework Cocoa -framework Carbon'
}
2019-08-23 11:05:16 +02:00
}
*/
2019-08-23 11:05:16 +02:00
}
if v.pref.sanitize {
a << '-fsanitize=leak'
}
// Cross compiling linux TODO
/*
sysroot := '/tmp/lld/linuxroot/'
2019-08-23 11:05:16 +02:00
if v.os == .linux && !linux_host {
// Build file.o
a << '-c --sysroot=$sysroot -target x86_64-linux-gnu'
// Right now `out_name` can be `file`, not `file.o`
if !v.out_name.ends_with('.o') {
v.out_name = v.out_name + '.o'
}
}
*/
2019-08-23 11:05:16 +02:00
// Cross compiling windows
//
2019-08-23 11:05:16 +02:00
// Output executable name
2020-02-09 10:08:04 +01:00
a << '-o "$v.pref.out_name"'
if os.is_dir(v.pref.out_name) {
2020-04-25 17:49:16 +02:00
verror("'$v.pref.out_name' is a directory")
2019-08-23 11:05:16 +02:00
}
2019-09-07 18:19:17 +02:00
// macOS code can include objective C TODO remove once objective C is replaced with C
2020-02-09 10:08:04 +01:00
if v.pref.os == .mac {
2019-08-23 11:05:16 +02:00
a << '-x objective-c'
}
// The C file we are compiling
a << '"$v.out_name_c"'
2020-02-09 10:08:04 +01:00
if v.pref.os == .mac {
2019-08-23 11:05:16 +02:00
a << '-x none'
}
// Min macos version is mandatory I think?
2020-02-09 10:08:04 +01:00
if v.pref.os == .mac {
2019-08-23 11:05:16 +02:00
a << '-mmacosx-version-min=10.7'
}
2020-02-09 10:08:04 +01:00
if v.pref.os == .windows {
a << '-municode'
}
cflags := v.get_os_cflags()
2019-09-11 12:34:19 +02:00
// add .o files
a << cflags.c_options_only_object_files()
2019-09-11 12:34:19 +02:00
// add all flags (-I -l -L etc) not .o files
a << cflags.c_options_without_object_files()
2019-08-23 11:05:16 +02:00
a << libs
2020-04-27 14:46:25 +02:00
if v.pref.use_cache {
//vexe := pref.vexe_path()
2020-04-28 13:15:37 +02:00
cached_modules:= [ 'builtin', 'os', 'math', 'strconv', 'strings']
2020-04-27 14:46:25 +02:00
for cfile in cached_modules{
ofile := os.join_path(pref.default_module_path, 'cache', 'vlib', cfile + '.o')
if !os.exists(ofile) {
println('${cfile}.o is missing. Building...')
println('$vexe build-module vlib/$cfile')
os.system('$vexe build-module vlib/$cfile')
}
2020-04-27 14:46:25 +02:00
a << ofile
}
if !is_cc_tcc {
$if linux {
2020-05-01 19:34:27 +02:00
linker_flags << '-Xlinker -z'
linker_flags << '-Xlinker muldefs'
}
}
2020-04-10 18:11:43 +02:00
}
2019-08-23 11:05:16 +02:00
// Without these libs compilation will fail on Linux
// || os.user_os() == 'linux'
2020-04-25 17:49:16 +02:00
if !v.pref.is_bare && v.pref.build_mode != .build_module && v.pref.os in [ .linux, .freebsd,
.openbsd, .netbsd, .dragonfly, .solaris, .haiku] {
2020-05-01 19:34:27 +02:00
linker_flags << '-lm'
linker_flags << '-lpthread'
2019-08-23 11:05:16 +02:00
// -ldl is a Linux only thing. BSDs have it in libc.
2020-02-09 10:08:04 +01:00
if v.pref.os == .linux {
2020-05-01 19:34:27 +02:00
linker_flags << '-ldl'
2019-08-23 11:05:16 +02:00
}
2020-02-09 10:08:04 +01:00
if v.pref.os == .freebsd {
// FreeBSD: backtrace needs execinfo library while linking
2020-05-01 19:34:27 +02:00
linker_flags << '-lexecinfo'
2019-12-18 11:21:21 +01:00
}
2019-08-23 11:05:16 +02:00
}
2020-02-09 10:08:04 +01:00
if !v.pref.is_bare && v.pref.os == .js && os.user_os() == 'linux' {
2020-05-01 19:34:27 +02:00
linker_flags << '-lm'
2019-09-16 21:00:59 +02:00
}
2020-05-01 19:34:27 +02:00
args := a.join(' ') + linker_flags.join(' ')
2020-04-25 17:49:16 +02:00
start:
2019-10-25 17:53:45 +02:00
todo()
// TODO remove
2019-08-23 11:05:16 +02:00
cmd := '${v.pref.ccompiler} $args'
// Run
if v.pref.is_verbose || v.pref.show_cc {
2019-08-23 11:05:16 +02:00
println('\n==========')
println(cmd)
}
ticks := time.ticks()
2020-04-25 17:49:16 +02:00
res := os.exec(cmd) or {
// C compilation failed.
// If we are on Windows, try msvc
println('C compilation failed.')
/*
if os.user_os() == 'windows' && v.pref.ccompiler != 'msvc' {
println('Trying to build with MSVC')
v.cc_msvc()
return
}
*/
2019-11-14 08:23:44 +01:00
verror(err)
return
}
2019-08-23 11:05:16 +02:00
if res.exit_code != 0 {
2019-10-25 17:53:45 +02:00
// the command could not be found by the system
2019-08-23 11:05:16 +02:00
if res.exit_code == 127 {
2019-10-25 17:49:49 +02:00
$if linux {
2019-10-25 17:53:45 +02:00
// TCC problems on linux? Try GCC.
2019-10-25 19:11:53 +02:00
if v.pref.ccompiler.contains('tcc') {
2019-10-25 17:49:49 +02:00
v.pref.ccompiler = 'cc'
goto start
}
2019-10-25 17:49:49 +02:00
}
2020-04-25 17:49:16 +02:00
verror('C compiler error, while attempting to run: \n' + '-----------------------------------------------------------\n' +
'$cmd\n' + '-----------------------------------------------------------\n' + 'Probably your C compiler is missing. \n' +
'Please reinstall it, or make it available in your PATH.\n\n' + missing_compiler_info())
2019-08-23 11:05:16 +02:00
}
if v.pref.is_debug {
eword := 'error:'
khighlight := if term.can_show_color_on_stdout() { term.red(eword) } else { eword }
println(res.output.replace(eword, khighlight))
2020-02-09 10:08:04 +01:00
verror("
==================
C error. This should never happen.
V compiler version: ${util.full_v_version()}
2020-02-09 10:08:04 +01:00
Host OS: ${pref.get_host_os().str()}
Target OS: $v.pref.os.str()
If you were not working with C interop and are not sure about what's happening,
please put the whole output in a pastebin and contact us through the following ways with a link to the pastebin:
- Raise an issue on GitHub: https://github.com/vlang/v/issues/new/choose
- Ask a question in #help on Discord: https://discord.gg/vlang")
2020-04-25 17:49:16 +02:00
} else {
2020-01-17 19:30:45 +01:00
if res.output.len < 30 {
2020-01-17 19:44:03 +01:00
println(res.output)
2020-01-17 19:30:45 +01:00
} else {
2020-04-25 17:49:16 +02:00
elines := error_context_lines(res.output, 'error:', 1, 12)
println('==================')
for eline in elines {
println(eline)
}
2020-02-09 10:08:04 +01:00
println('...')
println('==================')
2020-02-09 10:08:04 +01:00
println('(Use `v -cg` to print the entire error message)\n')
2019-08-23 11:05:16 +02:00
}
2020-02-09 10:08:04 +01:00
verror("C error.
Please make sure that:
- You have all V dependencies installed.
- You did not declare a C function that was not included. (Try commenting your code that involves C interop)
- You are running the latest version of V. (Try running `v up` and rerunning your command)
If you're confident that all of the above is true, please try running V with the `-cg` option which enables more debugging capabilities.\n")
2019-08-23 11:05:16 +02:00
}
}
diff := time.ticks() - ticks
// Print the C command
2020-04-07 00:44:19 +02:00
if v.pref.is_verbose {
2019-08-23 11:05:16 +02:00
println('${v.pref.ccompiler} took $diff ms')
println('=========\n')
}
// Link it if we are cross compiling and need an executable
/*
2019-08-23 11:05:16 +02:00
if v.os == .linux && !linux_host && v.pref.build_mode != .build {
v.out_name = v.out_name.replace('.o', '')
obj_file := v.out_name + '.o'
println('linux obj_file=$obj_file out_name=$v.out_name')
ress := os.exec('/usr/local/Cellar/llvm/8.0.0/bin/ld.lld --sysroot=$sysroot ' +
'-v -o $v.out_name ' +
'-m elf_x86_64 -dynamic-linker /lib64/ld-linux-x86-64.so.2 ' +
'/usr/lib/x86_64-linux-gnu/crt1.o ' +
'$sysroot/lib/x86_64-linux-gnu/libm-2.28.a ' +
'/usr/lib/x86_64-linux-gnu/crti.o ' +
obj_file +
' /usr/lib/x86_64-linux-gnu/libc.so ' +
'/usr/lib/x86_64-linux-gnu/crtn.o') or {
verror(err)
2019-08-29 02:30:17 +02:00
return
2019-08-23 11:05:16 +02:00
}
println(ress.output)
println('linux cross compilation done. resulting binary: "$v.out_name"')
}
*/
2020-04-27 13:27:55 +02:00
if !v.pref.keep_c && v.out_name_c != 'v.c' {
2019-10-09 06:02:45 +02:00
os.rm(v.out_name_c)
2019-08-23 11:05:16 +02:00
}
2019-09-19 14:52:38 +02:00
if v.pref.compress {
2019-09-19 15:05:17 +02:00
$if windows {
println('-compress does not work on Windows for now')
return
}
2020-02-09 10:08:04 +01:00
ret := os.system('strip $v.pref.out_name')
2019-09-19 14:52:38 +02:00
if ret != 0 {
println('strip failed')
return
}
// NB: upx --lzma can sometimes fail with NotCompressibleException
// See https://github.com/vlang/v/pull/3528
2020-02-09 10:08:04 +01:00
mut ret2 := os.system('upx --lzma -qqq $v.pref.out_name')
if ret2 != 0 {
2020-02-09 10:08:04 +01:00
ret2 = os.system('upx -qqq $v.pref.out_name')
}
2019-09-19 14:52:38 +02:00
if ret2 != 0 {
println('upx failed')
2019-12-03 14:29:24 +01:00
$if macos {
2019-09-19 14:52:38 +02:00
println('install upx with `brew install upx`')
}
2019-09-19 14:52:38 +02:00
$if linux {
println('install upx\n' + 'for example, on Debian/Ubuntu run `sudo apt install upx`')
}
2019-09-19 14:52:38 +02:00
$if windows {
// :)
}
2019-09-19 14:52:38 +02:00
}
}
2019-08-23 11:05:16 +02:00
}
2020-04-25 17:49:16 +02:00
fn (mut c Builder) cc_windows_cross() {
/*
QTODO
2020-01-03 11:38:26 +01:00
println('Cross compiling for Windows...')
2020-02-09 10:08:04 +01:00
if !c.pref.out_name.ends_with('.exe') {
c.pref.out_name += '.exe'
2019-08-23 11:05:16 +02:00
}
2020-02-09 10:08:04 +01:00
mut args := '-o $c.pref.out_name -w -L. '
cflags := c.get_os_cflags()
2019-08-23 11:05:16 +02:00
// -I flags
args += if c.pref.ccompiler == 'msvc' { cflags.c_options_before_target_msvc() } else { cflags.c_options_before_target() }
2019-08-23 11:05:16 +02:00
mut libs := ''
2020-01-03 11:38:26 +01:00
if false && c.pref.build_mode == .default_mode {
libs = '"${pref.default_module_path}/vlib/builtin.o"'
if !os.exists(libs) {
println('`$libs` not found')
exit(1)
2019-08-23 11:05:16 +02:00
}
for imp in c.table.imports {
libs += ' "${pref.default_module_path}/vlib/${imp}.o"'
2019-08-23 11:05:16 +02:00
}
}
args += ' $c.out_name_c '
2020-01-03 11:38:26 +01:00
args += if c.pref.ccompiler == 'msvc' { cflags.c_options_after_target_msvc() } else { cflags.c_options_after_target() }
2020-01-03 11:38:26 +01:00
/*
winroot := '${pref.default_module_path}/winroot'
if !os.is_dir(winroot) {
2019-08-23 11:05:16 +02:00
winroot_url := 'https://github.com/vlang/v/releases/download/v0.1.10/winroot.zip'
2019-08-28 13:35:48 +02:00
println('"$winroot" not found.')
println('Download it from $winroot_url and save it in ${pref.default_module_path}')
2019-08-28 13:35:48 +02:00
println('Unzip it afterwards.\n')
println('winroot.zip contains all library and header files needed ' + 'to cross-compile for Windows.')
exit(1)
2019-08-23 11:05:16 +02:00
}
mut obj_name := c.out_name
obj_name = obj_name.replace('.exe', '')
obj_name = obj_name.replace('.o.o', '.o')
include := '-I $winroot/include '
2020-01-03 11:38:26 +01:00
*/
mut cmd := ''
2020-01-03 11:41:39 +01:00
cmd = ''
2020-01-03 11:38:26 +01:00
$if macos {
2020-01-04 00:06:01 +01:00
cmd = 'x86_64-w64-mingw32-gcc -std=gnu11 $args -municode'
2020-01-03 11:38:26 +01:00
}
$else {
panic('your platform is not supported yet')
}
2020-01-03 11:41:39 +01:00
println(cmd)
//cmd := 'clang -o $obj_name -w $include -m32 -c -target x86_64-win32 ${pref.default_module_path}/$c.out_name_c'
2020-03-06 18:53:29 +01:00
if c.pref.verbosity.is_higher_or_equal(.level_one) {
println(cmd)
2019-08-23 11:05:16 +02:00
}
if os.system(cmd) != 0 {
println('Cross compilation for Windows failed. Make sure you have clang installed.')
exit(1)
}
2020-01-03 11:38:26 +01:00
/*
if c.pref.build_mode != .build_module {
link_cmd := 'lld-link $obj_name $winroot/lib/libcmt.lib ' + '$winroot/lib/libucrt.lib $winroot/lib/kernel32.lib $winroot/lib/libvcruntime.lib ' + '$winroot/lib/uuid.lib'
if c.pref.show_cc {
2019-08-23 11:05:16 +02:00
println(link_cmd)
}
if os.system(link_cmd) != 0 {
2019-08-23 11:05:16 +02:00
println('Cross compilation for Windows failed. Make sure you have lld linker installed.')
exit(1)
}
// os.rm(obj_name)
}
2020-01-03 11:38:26 +01:00
*/
2019-08-23 11:05:16 +02:00
println('Done!')
*/
2019-08-23 11:05:16 +02:00
}
2020-04-07 00:44:19 +02:00
fn (c &Builder) build_thirdparty_obj_files() {
for flag in c.get_os_cflags() {
if flag.value.ends_with('.o') {
rest_of_module_flags := c.get_rest_of_module_cflags(flag)
if c.pref.ccompiler == 'msvc' || c.no_cc_installed() {
build_thirdparty_obj_file_with_msvc(flag.value, rest_of_module_flags)
2020-04-25 17:49:16 +02:00
} else {
2020-02-09 10:08:04 +01:00
c.build_thirdparty_obj_file(flag.value, rest_of_module_flags)
}
}
}
2019-08-23 11:05:16 +02:00
}
2020-04-18 16:29:43 +02:00
fn (v &Builder) build_thirdparty_obj_file(path string, moduleflags []cflag.CFlag) {
obj_path := os.real_path(path)
if os.exists(obj_path) {
return
}
println('$obj_path not found, building it...')
parent := os.dir(obj_path)
2020-04-25 17:49:16 +02:00
files := os.ls(parent) or {
panic(err)
}
mut cfiles := ''
for file in files {
if file.ends_with('.c') {
cfiles += '"' + os.real_path(parent + os.path_separator + file) + '" '
}
}
btarget := moduleflags.c_options_before_target()
atarget := moduleflags.c_options_after_target()
cmd := '$v.pref.ccompiler $v.pref.third_party_option $btarget -c -o "$obj_path" $cfiles $atarget '
2020-04-25 17:49:16 +02:00
res := os.exec(cmd) or {
println('failed thirdparty object build cmd: $cmd')
verror(err)
return
}
if res.exit_code != 0 {
println('failed thirdparty object build cmd: $cmd')
verror(res.output)
return
}
println(res.output)
}
fn missing_compiler_info() string {
$if windows {
return 'https://github.com/vlang/v/wiki/Installing-a-C-compiler-on-Windows'
}
$if linux {
return 'On Debian/Ubuntu, run `sudo apt install build-essential`'
}
2019-12-03 14:29:24 +01:00
$if macos {
return 'Install command line XCode tools with `xcode-select --install`'
}
return ''
}
fn error_context_lines(text, keyword string, before, after int) []string {
khighlight := if term.can_show_color_on_stdout() { term.red(keyword) } else { keyword }
mut eline_idx := 0
mut lines := text.split_into_lines()
for idx, eline in lines {
if eline.contains(keyword) {
lines[idx] = lines[idx].replace(keyword, khighlight)
if eline_idx == 0 {
eline_idx = idx
}
}
}
idx_s := if eline_idx - before >= 0 { eline_idx - before } else { 0 }
idx_e := if idx_s + after < lines.len { idx_s + after } else { lines.len }
return lines[idx_s..idx_e]
}