You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
607 B
21 lines
607 B
#!/bin/sed -f
|
|
#
|
|
# This script filters out gcc-wall crud that we're not interested in seeing.
|
|
#
|
|
/^cc /d
|
|
/^kcc /d
|
|
/^gcc /d
|
|
/does not support `long long'/d
|
|
/forbids long long integer constants/d
|
|
/does not support the `ll' length modifier/d
|
|
/does not support the `ll' printf length modifier/d
|
|
/ANSI C forbids long long integer constants/d
|
|
/traditional C rejects string concatenation/d
|
|
/integer constant is unsigned in ANSI C, signed with -traditional/d
|
|
/warning: missing initializer/d
|
|
/warning: (near initialization for/d
|
|
/^[ ]*from/d
|
|
/unused parameter/d
|
|
/e2_types.h" not found.$/d
|
|
/e2_bitops.h" not found.$/d
|