]> ruderich.org/simon Gitweb - blhc/blhc.git/commitdiff
Also accept -O3, not only -O2.
authorSimon Ruderich <simon@ruderich.org>
Sat, 17 Mar 2012 16:43:48 +0000 (17:43 +0100)
committerSimon Ruderich <simon@ruderich.org>
Sat, 17 Mar 2012 16:43:48 +0000 (17:43 +0100)
bin/blhc
t/logs/good

index d2e5df761c09e45e5943cc7ba328cd8f34f3746f..38ca653cd655b8dd6209df0229fdf86e1754edc6 100755 (executable)
--- a/bin/blhc
+++ b/bin/blhc
@@ -37,7 +37,7 @@ my $warning_regex = qr/^(.+?):([0-9]+):[0-9]+: warning: (.+?) \[(.+?)\]$/;
 # Expected (hardening) flags. All flags are used as regexps.
 my @cflags = (
     '-g',
-    '-O2',
+    '-O(?:2|3)',
 );
 my @cflags_format = (
     '-Wformat',
@@ -71,6 +71,7 @@ my @ldflags_pie = (
 );
 # Renaming rules for the output so the regex parts are not visible.
 my %flag_renames = (
+    '-O(?:2|3)'       => '-O2',
     '-Wl,(-z,)?relro' => '-Wl,-z,relro',
     '-Wl,(-z,)?now'   => '-Wl,-z,now',
 );
index 670766f9af87daad01bc0034e862b60f0e09f066..447ff17fb30e47ca9e4a45cb70e524ceccfe35c3 100644 (file)
@@ -9,6 +9,7 @@ checking dependency style of gcc... gcc3
 gcc -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Wformat-security -Werror=format-security -D_FORTIFY_SOURCE=2 -c test-a.c
 gcc -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Wformat-security -Werror=format-security -D_FORTIFY_SOURCE=2 -c test-b.c
 gcc -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Wformat-security -Werror=format-security -D_FORTIFY_SOURCE=2 -c test-c.c
+gcc -g -O3 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Wformat-security -Werror=format-security -D_FORTIFY_SOURCE=2 -c test-d.c
 gcc -Wl,-z,relro -o test test-a.o test-b.o test-c.o -ltest
 
 # Compiling and linking in one step must also check CFLAGS/CPPFLAGS.