Created
March 27, 2018 05:05
-
-
Save tanghaiduong/c73b1f34133b65db65c4f957dc4c7709 to your computer and use it in GitHub Desktop.
Make Exit Status Values
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Exit status | Meaning | |
---|---|---|
0 | Normal exit with no errors. | |
1 | General purpose error if no other explicit error is known. | |
2 | There was an error in the makefile. | |
3 | A shell line had a non-zero status. | |
4 | Make ran out of memory. | |
5 | The program specified on the shell line was not executable. | |
6 | The shell line was longer than the command processor allowed. | |
7 | The program specified on the shell line could not be found. | |
8 | There was not enough memory to execute the shell line. | |
9 | The shell line produced a device error. | |
10 | The program specified on the shell line became resident. | |
11 | The shell line produced an unknown error. | |
15 | There was a problem with the memory miser. | |
16 | The user hit CTRL+C or CTRL+BREAK.. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment