diff options
Diffstat (limited to 'Tools')
-rwxr-xr-x | Tools/portbuild/scripts/processlogs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Tools/portbuild/scripts/processlogs b/Tools/portbuild/scripts/processlogs index bc1fc8ddd66d..d377bd3d1f96 100755 --- a/Tools/portbuild/scripts/processlogs +++ b/Tools/portbuild/scripts/processlogs @@ -117,6 +117,12 @@ else reason="depend object"; tag="dependobj" elif grep -q "error in dependency .*, exiting" $1; then reason="depend package"; tag="dependpkg" + elif grep -q "#error \"<malloc.h> has been replaced by <stdlib.h>\"" $1; then + reason="malloc.h"; tag="malloc.h" + elif grep -q "core dumped" $1; then + reason="coredump"; tag="coredump" + elif grep -q "Segmentation fault" $1; then + reason="segfault"; tag="segfault" else reason="???"; tag="unknown" fi |