mirror of
https://github.com/vlang/v.git
synced 2025-09-13 22:42:26 +03:00
tools: fix v doctor output on FreeBSD ; do not run ldd to get the glibc version (#24427)
This commit is contained in:
parent
dd859eae55
commit
2d43b83584
1 changed files with 1 additions and 1 deletions
|
@ -149,7 +149,7 @@ fn (mut a App) collect_info() {
|
|||
}
|
||||
a.report_tcc_version('thirdparty/tcc')
|
||||
a.line('emcc version', a.cmd(command: 'emcc --version'))
|
||||
if os_kind != 'openbsd' {
|
||||
if os_kind != 'openbsd' && os_kind != 'freebsd' {
|
||||
a.line('glibc version', a.cmd(command: 'ldd --version'))
|
||||
} else {
|
||||
a.line('glibc version', 'N/A')
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue