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

builder: use .dylib for -shared builds in macOS

This commit is contained in:
pancake
2020-05-29 04:52:19 +02:00
committed by GitHub
parent 104c278216
commit b3f2c629c6
3 changed files with 7 additions and 2 deletions

View File

@ -5,7 +5,7 @@ module dl
pub const (
rtld_now = C.RTLD_NOW
rtld_lazy = C.RTLD_LAZY
dl_ext = '.so'
dl_ext = '.so'
)
fn C.dlopen(filename charptr, flags int) voidptr