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

@ -44,6 +44,7 @@ fn gen_gitignore(name string) string {
'main',
'$name',
'*.so',
'*.dylib',
'*.dll'
].join('\n')
}