v/vlib/v/builder/cc.v

849 lines
26 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 term
2019-08-23 11:05:16 +02:00
2020-05-14 18:14:35 +02:00
const (
c_verror_message_marker = 'VERROR_MESSAGE '
c_error_info = '
2020-05-14 18:14:35 +02:00
==================
C error. This should never happen.
If you were not working with C interop, please raise an issue on GitHub:
https://github.com/vlang/v/issues/new/choose
You can also use #help on Discord: https://discord.gg/vlang
2020-06-19 12:54:56 +02:00
'
no_compiler_error = '
2020-06-19 12:54:56 +02:00
==================
Error: no C compiler detected.
You can find instructions on how to install one in the V wiki:
https://github.com/vlang/v/wiki/Installing-a-C-compiler-on-Windows
If you think you have one installed, make sure it is in your PATH.
If you do have one in your PATH, please raise an issue on GitHub:
https://github.com/vlang/v/issues/new/choose
You can also use `v doctor`, to see what V knows about your current environment.
You can also seek #help on Discord: https://discord.gg/vlang
2020-06-19 12:54:56 +02:00
'
)
2020-05-14 18:14:35 +02:00
const (
mingw_cc = 'x86_64-w64-mingw32-gcc'
)
2019-10-25 17:53:45 +02:00
fn todo() {
}
2019-10-25 17:53:45 +02:00
fn (mut v Builder) find_win_cc() ? {
2020-07-09 12:26:15 +02:00
$if !windows {
return none
}
2020-06-19 12:54:56 +02:00
os.exec('$v.pref.ccompiler -v') or {
if v.pref.is_verbose {
println('$v.pref.ccompiler not found, looking for msvc...')
}
find_msvc() or {
2020-04-07 00:44:19 +02:00
if v.pref.is_verbose {
2020-06-19 12:54:56 +02:00
println('msvc not found, looking for thirdparty/tcc...')
}
vpath := os.dir(os.getenv('VEXE'))
thirdparty_tcc := os.join_path(vpath, 'thirdparty', 'tcc', 'tcc.exe')
os.exec('$thirdparty_tcc -v') or {
if v.pref.is_verbose {
println('tcc not found')
2020-06-19 12:54:56 +02:00
}
return none
}
v.pref.ccompiler = thirdparty_tcc
v.pref.ccompiler_type = .tinyc
return
2019-12-12 12:27:47 +01:00
}
v.pref.ccompiler = 'msvc'
v.pref.ccompiler_type = .msvc
return
}
v.pref.ccompiler_type = pref.cc_from_string(v.pref.ccompiler)
}
fn (mut v Builder) post_process_c_compiler_output(res os.Result) {
if res.exit_code == 0 {
2020-10-24 19:29:24 +02:00
if v.pref.reuse_tmpc {
return
}
for tmpfile in v.pref.cleanup_files {
if os.is_file(tmpfile) {
if v.pref.is_verbose {
eprintln('>> remove tmp file: $tmpfile')
}
os.rm(tmpfile)
}
}
return
}
for emsg_marker in [c_verror_message_marker, 'error: include file '] {
if res.output.contains(emsg_marker) {
emessage := res.output.all_after(emsg_marker).all_before('\n').all_before('\r').trim_right('\r\n')
verror(emessage)
}
}
if v.pref.is_debug {
eword := 'error:'
khighlight := if term.can_show_color_on_stdout() { term.red(eword) } else { eword }
println(res.output.trim_right('\r\n').replace(eword, khighlight))
} else {
if res.output.len < 30 {
println(res.output)
} else {
elines := error_context_lines(res.output, 'error:', 1, 12)
println('==================')
for eline in elines {
println(eline)
}
println('...')
println('==================')
println('(Use `v -cg` to print the entire error message)\n')
}
}
verror(c_error_info)
}
fn (mut v Builder) rebuild_cached_module(vexe string, imp_path string) string {
res := v.pref.cache_manager.exists('.o', imp_path) or {
println('Cached $imp_path .o file not found... Building .o file for $imp_path')
boptions := v.pref.build_options.join(' ')
rebuild_cmd := '$vexe $boptions build-module $imp_path'
// eprintln('>> rebuild_cmd: $rebuild_cmd')
os.system(rebuild_cmd)
rebuilded_o := v.pref.cache_manager.exists('.o', imp_path) or {
panic('could not rebuild cache module for $imp_path, error: $err')
}
return rebuilded_o
}
return res
}
2020-11-03 11:37:04 +01:00
fn (mut v Builder) show_cc(cmd string, response_file string, response_file_content string) {
if v.pref.is_verbose || v.pref.show_cc {
println('')
println('=====================')
println('> C compiler cmd: $cmd')
if v.pref.show_cc {
println('> C compiler response file $response_file:')
println(response_file_content)
}
println('=====================')
}
}
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"')
}
if v.pref.only_check_syntax {
if v.pref.is_verbose {
println('builder.cc returning early, since pref.only_check_syntax is true')
}
return
}
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 {
v.pref.skip_running = true
// 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)
}
return
2019-08-29 23:07:54 +02:00
}
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
}
}
2020-06-19 12:54:56 +02:00
mut ccompiler := v.pref.ccompiler
2019-08-23 11:05:16 +02:00
$if windows {
2020-06-19 12:54:56 +02:00
if ccompiler == 'msvc' {
2019-08-23 11:05:16 +02:00
v.cc_msvc()
return
}
}
if v.pref.os == .ios {
ios_sdk := if v.pref.is_ios_simulator { 'iphonesimulator' } else { 'iphoneos' }
ios_sdk_path_res := os.exec('xcrun --sdk $ios_sdk --show-sdk-path') or {
panic("Couldn\'t find iphonesimulator")
}
mut isysroot := ios_sdk_path_res.output.replace('\n', '')
ccompiler = 'xcrun --sdk iphoneos clang -isysroot $isysroot'
}
2019-11-16 23:14:05 +01:00
// arguments for the C compiler
2020-07-09 12:26:15 +02:00
// TODO : activate -Werror once no warnings remain
// '-Werror',
// TODO : try and remove the below workaround options when the corresponding
// warnings are totally fixed/removed
mut args := [v.pref.cflags, '-std=gnu99', '-Wall', '-Wextra', '-Wno-unused-variable', '-Wno-unused-parameter',
'-Wno-unused-result', '-Wno-unused-function', '-Wno-missing-braces', '-Wno-unused-label']
if v.pref.os == .ios {
2020-07-28 22:33:33 +02:00
args << '-framework Foundation'
args << '-framework UIKit'
args << '-framework Metal'
args << '-framework MetalKit'
args << '-DSOKOL_METAL'
args << '-fobjc-arc'
}
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
2020-07-28 22:33:33 +02:00
args << '-m64'
}
}
} $else {
verror('-fast is only supported on Linux right now')
}
2019-10-31 18:32:34 +01: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'
2020-07-28 22:33:33 +02:00
args << '-fPIC' // -Wl,-z,defs'
$if macos {
v.pref.out_name += '.dylib'
} $else {
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-07-28 22:33:33 +02:00
args << '-fno-stack-protector'
args << '-ffreestanding'
2020-05-01 19:34:27 +02:00
linker_flags << '-static'
linker_flags << '-nostdlib'
}
2019-09-10 16:36:14 +02:00
if v.pref.build_mode == .build_module {
v.pref.out_name = v.pref.cache_manager.postfix_with_key2cpath('.o', v.pref.path) // v.out_name
println('Building $v.pref.path to $v.pref.out_name ...')
v.pref.cache_manager.save('.description.txt', v.pref.path, '${v.pref.path:-30} @ $v.pref.cache_manager.vopts\n')
// println('v.table.imports:')
// println(v.table.imports)
}
debug_mode := v.pref.is_debug
2020-07-15 11:46:18 +02:00
mut debug_options := '-g3'
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 {
2020-07-09 12:26:15 +02:00
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'
}
}
}
}
//
2020-06-19 12:54:56 +02:00
is_cc_tcc := ccompiler.contains('tcc') || guessed_compiler == 'tcc'
is_cc_clang := !is_cc_tcc && (ccompiler.contains('clang') || guessed_compiler == 'clang')
2020-07-09 12:26:15 +02:00
is_cc_gcc := !is_cc_tcc && !is_cc_clang &&
(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 {
2020-07-15 11:46:18 +02:00
debug_options = '-g3 -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 {
2020-07-28 22:33:33 +02:00
args << debug_options
2020-03-05 00:45:43 +01:00
$if macos {
2020-07-28 22:33:33 +02:00
args << ' -ferror-limit=5000 '
2020-03-05 00:45:43 +01:00
}
}
2019-08-23 11:05:16 +02:00
if v.pref.is_prod {
2020-07-28 22:33:33 +02:00
args << optimization_options
2019-08-23 11:05:16 +02:00
}
if v.pref.is_prod && !debug_mode {
// sokol and other C libraries that use asserts
// have much better performance when NDEBUG is defined
// See also http://www.open-std.org/jtc1/sc22/wg14/www/docs/n1256.pdf
args << '-DNDEBUG'
}
if debug_mode && os.user_os() != 'windows' {
2020-05-01 19:34:27 +02:00
linker_flags << ' -rdynamic ' // needed for nicer symbolic backtraces
}
2020-06-19 12:54:56 +02:00
if ccompiler != 'msvc' && v.pref.os != .freebsd {
2020-07-28 22:33:33 +02:00
args << '-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 == .macos || os.user_os() == 'macos' {
2020-07-28 22:33:33 +02:00
args << '-flat_namespace'
2020-04-18 17:46:23 +02:00
}
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 {
2020-07-28 22:33:33 +02:00
args << '-c'
2020-04-27 14:46:25 +02:00
} else if v.pref.use_cache {
mut built_modules := []string{}
builtin_obj_path := v.rebuild_cached_module(vexe, 'vlib/builtin')
libs += ' ' + builtin_obj_path
for ast_file in v.parsed_files {
for imp_stmt in ast_file.imports {
imp := imp_stmt.mod
if imp in built_modules {
continue
}
// not working
if imp == 'webview' {
continue
}
// println('cache: import "$imp"')
mod_path := imp.replace('.', os.path_separator)
// TODO: to get import path all imports (even relative) we can use:
// import_path := v.find_module_path(imp, ast_file.path) or {
// verror('cannot import module "$imp" (not found)')
// break
// }
// The problem is cmd/v is in module main and imports
// the relative module named help, which is built as cmd.v.help not help
// currently this got this workign by building into main, see ast.FnDecl in cgen
if imp == 'help' {
continue
}
// we are skipping help manually above, this code will skip all relative imports
// if os.is_dir(af_base_dir + os.path_separator + mod_path) {
// continue
// }
imp_path := os.join_path('vlib', mod_path)
obj_path := v.rebuild_cached_module(vexe, imp_path)
libs += ' ' + obj_path
if obj_path.ends_with('vlib/ui.o') {
args << '-framework Cocoa -framework Carbon'
}
built_modules << imp
2019-10-31 22:57:16 +01:00
}
2019-08-23 11:05:16 +02:00
}
}
if v.pref.sanitize {
2020-07-28 22:33:33 +02:00
args << '-fsanitize=leak'
2019-08-23 11:05:16 +02:00
}
2020-05-31 15:09:07 +02:00
// Cross compiling for linux
if v.pref.os == .linux {
$if !linux {
v.cc_linux_cross()
2020-05-31 15:09:07 +02:00
return
2019-08-23 11:05:16 +02:00
}
}
// Cross compiling windows
//
2019-08-23 11:05:16 +02:00
// Output executable name
if v.pref.os == .ios {
bundle_name := v.pref.out_name.split('/').last()
2020-07-28 22:33:33 +02:00
args << '-o "$v.pref.out_name\.app/$bundle_name"'
} else {
2020-07-28 22:33:33 +02:00
args << '-o "$v.pref.out_name"'
}
2020-02-09 10:08:04 +01:00
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
if v.pref.os == .macos || v.pref.os == .ios {
2020-07-28 22:33:33 +02:00
args << '-x objective-c'
2019-08-23 11:05:16 +02:00
}
// The C file we are compiling
2020-07-28 22:33:33 +02:00
args << '"$v.out_name_c"'
if v.pref.os == .macos {
2020-07-28 22:33:33 +02:00
args << '-x none'
2019-08-23 11:05:16 +02:00
}
// Min macos version is mandatory I think?
if v.pref.os == .macos {
2020-07-28 22:33:33 +02:00
args << '-mmacosx-version-min=10.7'
2019-08-23 11:05:16 +02:00
}
if v.pref.os == .ios {
2020-07-28 22:33:33 +02:00
args << '-miphoneos-version-min=10.0'
}
2020-02-09 10:08:04 +01:00
if v.pref.os == .windows {
2020-07-28 22:33:33 +02:00
args << '-municode'
}
cflags := v.get_os_cflags()
2019-09-11 12:34:19 +02:00
// add .o files
2020-07-28 22:33:33 +02:00
args << cflags.c_options_only_object_files()
2019-09-11 12:34:19 +02:00
// add all flags (-I -l -L etc) not .o files
2020-07-28 22:33:33 +02:00
args << cflags.c_options_without_object_files()
args << libs
2020-05-18 21:38:06 +02:00
// For C++ we must be very tolerant
if guessed_compiler.contains('++') {
2020-07-28 22:33:33 +02:00
args << '-fpermissive'
args << '-w'
2020-05-18 21:38:06 +02:00
}
// TODO: why is this duplicated from above?
2020-04-27 14:46:25 +02:00
if v.pref.use_cache {
2020-07-09 12:26:15 +02:00
// vexe := pref.vexe_path()
// cached_modules := ['builtin', 'os', 'math', 'strconv', 'strings', 'hash'], // , 'strconv.ftoa']
// for cfile in cached_modules {
// ofile := os.join_path(pref.default_module_path, 'cache', 'vlib', cfile.replace('.', '/') +
// '.o')
// if !os.exists(ofile) {
// println('${cfile}.o is missing. Building...')
// println('$vexe build-module vlib/$cfile')
// os.system('$vexe build-module vlib/$cfile')
// }
// args << 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
}
if is_cc_tcc {
args << '-bt25'
}
2019-08-23 11:05:16 +02:00
// Without these libs compilation will fail on Linux
// || os.user_os() == 'linux'
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
}
env_cflags := os.getenv('CFLAGS')
env_ldflags := os.getenv('LDFLAGS')
str_args := env_cflags + ' ' + args.join(' ') + ' ' + linker_flags.join(' ') + ' ' + env_ldflags
if v.pref.is_verbose {
2020-07-28 22:33:33 +02:00
println('cc args=$str_args')
println(args)
}
// write args to response file
response_file := '${v.out_name_c}.rsp'
2020-07-28 22:33:33 +02:00
response_file_content := str_args.replace('\\', '\\\\')
os.write_file(response_file, response_file_content) or {
verror('Unable to write response file "$response_file"')
}
if !debug_mode {
v.pref.cleanup_files << v.out_name_c
v.pref.cleanup_files << response_file
}
2020-04-25 17:49:16 +02:00
start:
2019-10-25 17:53:45 +02:00
todo()
// TODO remove
2020-07-09 12:26:15 +02:00
cmd := '$ccompiler @$response_file'
2020-11-03 11:37:04 +01:00
v.show_cc(cmd, response_file, response_file_content)
2019-08-23 11:05:16 +02:00
// Run
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
}
diff := time.ticks() - ticks
v.timing_message('C ${ccompiler:3}', diff)
if res.exit_code == 127 {
2019-10-25 17:53:45 +02:00
// the command could not be found by the system
$if linux {
// TCC problems on linux? Try GCC.
if ccompiler.contains('tcc') {
v.pref.ccompiler = 'cc'
goto start
2019-08-23 11:05: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
}
v.post_process_c_compiler_output(res)
2019-08-23 11:05:16 +02:00
// Print the C command
2020-04-07 00:44:19 +02:00
if v.pref.is_verbose {
2020-07-09 12:26:15 +02:00
println('$ccompiler took $diff ms')
2019-08-23 11:05:16 +02:00
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"')
}
*/
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
}
}
// if v.pref.os == .ios {
// ret := os.system('ldid2 -S $v.pref.out_name')
// if ret != 0 {
// eprintln('failed to run ldid2, try: brew install ldid')
// }
// }
2019-08-23 11:05:16 +02:00
}
fn (mut b Builder) cc_linux_cross() {
parent_dir := os.join_path(os.home_dir(), '.vmodules')
2020-07-09 12:26:15 +02:00
if !os.exists(parent_dir) {
os.mkdir(parent_dir)
}
sysroot := os.join_path(os.home_dir(), '.vmodules', 'linuxroot')
2020-05-31 15:09:07 +02:00
if !os.is_dir(sysroot) {
println('Downloading files for Linux cross compilation (~18 MB)...')
zip_url := 'https://github.com/vlang/v/releases/download/0.1.27/linuxroot.zip'
zip_file := sysroot + '.zip'
2020-07-09 12:26:15 +02:00
os.system('curl -L -o $zip_file $zip_url')
if !os.exists(zip_file) {
verror('Failed to download `$zip_url` as $zip_file')
}
os.system('tar -C $parent_dir -xf $zip_file')
2020-05-31 15:09:07 +02:00
if !os.is_dir(sysroot) {
verror('Failed to unzip $zip_file to $parent_dir')
2020-05-31 15:09:07 +02:00
}
}
obj_file := b.out_name_c + '.o'
mut cc_args := '-fPIC -w -c -target x86_64-linux-gnu -c -o $obj_file $b.out_name_c -I $sysroot/include '
cflags := b.get_os_cflags()
cc_args += cflags.c_options_without_object_files()
cc_cmd := 'cc $cc_args'
if b.pref.show_cc {
println(cc_cmd)
}
cc_res := os.exec(cc_cmd) or {
println('Cross compilation for Linux failed (first step, cc). Make sure you have clang installed.')
verror(err)
2020-07-09 12:26:15 +02:00
return
}
if cc_res.exit_code != 0 {
println('Cross compilation for Linux failed (first step, cc). Make sure you have clang installed.')
verror(cc_res.output)
2020-05-31 15:09:07 +02:00
}
2020-07-09 12:26:15 +02:00
linker_args := ['-L $sysroot/usr/lib/x86_64-linux-gnu/', '--sysroot=$sysroot -v -o $b.pref.out_name -m elf_x86_64',
'-dynamic-linker /lib/x86_64-linux-gnu/ld-linux-x86-64.so.2', '$sysroot/crt1.o $sysroot/crti.o $obj_file',
'-lc', '-lcrypto', '-lssl', '-lpthread', '$sysroot/crtn.o', cflags.c_options_only_object_files()]
// -ldl
linker_args_str := linker_args.join(' ')
linker_cmd := '$sysroot/ld.lld $linker_args_str'
2020-07-09 12:26:15 +02:00
// s = s.replace('SYSROOT', sysroot) // TODO $ inter bug
// s = s.replace('-o hi', '-o ' + c.pref.out_name)
if b.pref.show_cc {
println(linker_cmd)
}
res := os.exec(linker_cmd) or {
println('Cross compilation for Linux failed (second step, lld).')
verror(err)
2020-07-09 12:26:15 +02:00
return
}
if res.exit_code != 0 {
println('Cross compilation for Linux failed (second step, lld).')
verror(res.output)
2020-05-31 15:09:07 +02:00
}
println(b.pref.out_name + ' has been successfully compiled')
}
2020-04-25 17:49:16 +02:00
fn (mut c Builder) cc_windows_cross() {
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() }
mut optimization_options := ''
mut debug_options := ''
if c.pref.is_prod {
optimization_options = if c.pref.ccompiler == 'msvc' { '' } else { ' -O3 -fno-strict-aliasing -flto ' }
}
if c.pref.is_debug {
2020-07-09 12:26:15 +02:00
debug_options = if c.pref.ccompiler == 'msvc' { '' } else { ' -g3 -no-pie ' }
}
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 {
2020-07-09 12:26:15 +02:00
libs = '"$pref.default_module_path/vlib/builtin.o"'
if !os.exists(libs) {
verror('`$libs` not found')
2019-08-23 11:05:16 +02:00
}
for imp in c.table.imports {
2020-07-09 12:26:15 +02:00
libs += ' "$pref.default_module_path/vlib/${imp}.o"'
2019-08-23 11:05:16 +02:00
}
}
args += ' $c.out_name_c '
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
*/
if os.user_os() !in ['macos', 'linux'] {
println(os.user_os())
2020-01-03 11:38:26 +01:00
panic('your platform is not supported yet')
}
mut cmd := '$mingw_cc $optimization_options $debug_options -std=gnu11 $args -municode'
2020-07-09 12:26:15 +02:00
// cmd := 'clang -o $obj_name -w $include -m32 -c -target x86_64-win32 ${pref.default_module_path}/$c.out_name_c'
if c.pref.is_verbose || c.pref.show_cc {
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 mingw-w64 installed.')
$if macos {
println('brew install mingw-w64')
}
$if linux {
println('Try `sudo apt install -y mingw-w64` on Debian based distros, or `sudo pacman -S mingw-w64-gcc` on Arch, etc...')
}
2019-08-23 11:05:16 +02:00
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
*/
println(c.pref.out_name + ' has been successfully compiled')
2019-08-23 11:05:16 +02:00
}
fn (mut v Builder) build_thirdparty_obj_files() {
v.log('build_thirdparty_obj_files: v.table.cflags: $v.table.cflags')
for flag in v.get_os_cflags() {
if flag.value.ends_with('.o') {
rest_of_module_flags := v.get_rest_of_module_cflags(flag)
if v.pref.ccompiler == 'msvc' {
v.build_thirdparty_obj_file_with_msvc(flag.value, rest_of_module_flags)
2020-04-25 17:49:16 +02:00
} else {
v.build_thirdparty_obj_file(flag.value, rest_of_module_flags)
}
}
}
2019-08-23 11:05:16 +02:00
}
fn (mut v Builder) build_thirdparty_obj_file(path string, moduleflags []cflag.CFlag) {
obj_path := os.real_path(path)
if v.pref.os == .windows {
// Cross compiling for Windows
$if !windows {
v.pref.ccompiler = mingw_cc
}
}
opath := v.pref.cache_manager.postfix_with_key2cpath('.o', obj_path)
if os.exists(opath) {
return
}
if os.exists(obj_path) {
// Some .o files are distributed with no source
// for example thirdparty\tcc\lib\openlibm.o
// the best we can do for them is just copy them,
// and hope that they work with any compiler...
os.cp(obj_path, opath)
return
}
println('$obj_path not found, building it in $opath ...')
cfile := '${path[..path.len - 2]}.c'
btarget := moduleflags.c_options_before_target()
atarget := moduleflags.c_options_after_target()
cppoptions := if v.pref.ccompiler.contains('++') { ' -fpermissive -w ' } else { '' }
cmd := '$v.pref.ccompiler $cppoptions $v.pref.third_party_option $btarget -c -o "$opath" "$cfile" $atarget'
2020-04-25 17:49:16 +02:00
res := os.exec(cmd) or {
eprintln('exec failed for thirdparty object build cmd:\n$cmd')
verror(err)
return
}
if res.exit_code != 0 {
eprintln('failed thirdparty object build cmd:\n$cmd')
verror(res.output)
return
}
v.pref.cache_manager.save('.description.txt', obj_path, '${obj_path:-30} @ $cmd\n')
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 string, keyword string, before int, 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]
}