Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

CL.exe exit codes

Anyone know where I can get a list of CL.exe exit codes and what they mean? Google is not my friend on this and the particular code I'm getting (4) also doesn't seem to get any hits.

Although the meaning to code 4 would be nice, I'd prefer a site that actually lists them all.

like image 986
Edward Strange Avatar asked Jan 21 '23 13:01

Edward Strange


1 Answers

Undocumented. But it isn't unusual for a process to return the Windows error, COM failure HRESULT or exception code. Which explains why it isn't documented.

Windows error code 4 is "Too many open files". Got deeply nested .h files or recursive #includes without a guard?

like image 87
Hans Passant Avatar answered Jan 26 '23 00:01

Hans Passant