We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
emcc --version
v doctor
1 parent 30de072 commit cb490a7Copy full SHA for cb490a7
1 file changed
cmd/tools/vdoctor.v
@@ -135,14 +135,15 @@ fn (mut a App) collect_info() {
135
a.line('V git status', a.git_info())
136
a.line('.git/config present', os.is_file('.git/config').str())
137
a.line('', '')
138
- a.line('CC version', a.cmd(command: 'cc --version'))
+ a.line('cc version', a.cmd(command: 'cc --version'))
139
a.line('gcc version', a.cmd(command: 'gcc --version'))
140
a.line('clang version', a.cmd(command: 'clang --version'))
141
if os_kind == 'windows' {
142
// Check for MSVC on windows
143
a.line('msvc version', a.cmd(command: 'cl'))
144
}
145
a.report_tcc_version('thirdparty/tcc')
146
+ a.line('emcc version', a.cmd(command: 'emcc --version'))
147
a.line('glibc version', a.cmd(command: 'ldd --version'))
148
149
0 commit comments