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

disable implicit-function-declaration for FreeBSD

This commit is contained in:
Sunny Lam 2019-08-27 15:06:12 +08:00 committed by Alexander Medvednikov
parent 631e6a0d09
commit a5b44b3bc5

View File

@ -39,7 +39,7 @@ fn (v mut V) cc() {
else {
a << '-g'
}
if v.os != .msvc {
if v.os != .msvc && v.os != .freebsd {
a << '-Werror=implicit-function-declaration'
}