1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

fix v -live on macOS

This commit is contained in:
Alexander Medvednikov
2019-12-05 14:40:14 +03:00
parent 2a1b0a8cae
commit 4888d27b71
2 changed files with 10 additions and 8 deletions

View File

@@ -284,6 +284,9 @@ pub fn (v mut V) compile() {
if '-debug_alloc' in os.args {
cgen.genln('#define DEBUG_ALLOC 1')
}
if v.pref.is_live && v.os != .windows {
cgen.includes << '#include <dlfcn.h>'
}
//cgen.genln('/*================================== FNS =================================*/')
cgen.genln('// this line will be replaced with definitions')
mut defs_pos := cgen.lines.len - 1