summaryrefslogtreecommitdiffstats
path: root/bugscan.rb
diff options
context:
space:
mode:
Diffstat (limited to 'bugscan.rb')
-rw-r--r--bugscan.rb5
1 files changed, 4 insertions, 1 deletions
diff --git a/bugscan.rb b/bugscan.rb
index 12fa7d8..5bf54c2 100644
--- a/bugscan.rb
+++ b/bugscan.rb
@@ -32,7 +32,10 @@ $bug_matches = {
"error: '.*' is not a member of 'std'" => "err_stdinclude", # e.g. f3d
"implicit declaration of( built-in)? function" => "err_implicitdecl", # e.g. bwbasic
"error: conflicting types for 'strl" => "err_conflictstrl", # e.g. crash
-
+ "error: too many arguments to function" => "err_toomanyargs", # e.g. abcmidi
+ "error: passing argument .*from incompatible pointer type" => "err_incompatibleptr", # e.g. 389-adminutil
+ "Compatibility with CMake < 3.5 has been removed from CMake." => "err_cmake35", # e.g. airspy
+ "No space left on device" => "err_nospace",
# The following have more specific matches above
"^ File not found:" => "err_packagedfilemissing",