File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -135,14 +135,15 @@ fn (mut a App) collect_info() {
135
135
a.line ('V git status' , a.git_info ())
136
136
a.line ('.git/config present' , os.is_file ('.git/config' ).str ())
137
137
a.line ('' , '' )
138
- a.line ('CC version' , a.cmd (command: 'cc --version' ))
138
+ a.line ('cc version' , a.cmd (command: 'cc --version' ))
139
139
a.line ('gcc version' , a.cmd (command: 'gcc --version' ))
140
140
a.line ('clang version' , a.cmd (command: 'clang --version' ))
141
141
if os_kind == 'windows' {
142
142
// Check for MSVC on windows
143
143
a.line ('msvc version' , a.cmd (command: 'cl' ))
144
144
}
145
145
a.report_tcc_version ('thirdparty/tcc' )
146
+ a.line ('emcc version' , a.cmd (command: 'emcc --version' ))
146
147
a.line ('glibc version' , a.cmd (command: 'ldd --version' ))
147
148
}
148
149
You can’t perform that action at this time.
0 commit comments