Skip to content

Instantly share code, notes, and snippets.

@tanghaiduong
Created March 27, 2018 05:05
Show Gist options
  • Save tanghaiduong/c73b1f34133b65db65c4f957dc4c7709 to your computer and use it in GitHub Desktop.
Save tanghaiduong/c73b1f34133b65db65c4f957dc4c7709 to your computer and use it in GitHub Desktop.
Make Exit Status Values
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