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:
parent
2a1b0a8cae
commit
4888d27b71
@ -114,7 +114,6 @@ void lfnmutex_print(char *s){
|
||||
|
||||
if v.os != .windows {
|
||||
cgen.genln('
|
||||
#include <dlfcn.h>
|
||||
void* live_lib=0;
|
||||
int load_so(byteptr path) {
|
||||
char cpath[1024];
|
||||
|
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user