]> ruderich.org/simon Gitweb - blhc/blhc.git/commitdiff
Also accept --param ssp-buffer-size=4.
authorSimon Ruderich <simon@ruderich.org>
Mon, 24 Sep 2012 11:24:01 +0000 (13:24 +0200)
committerSimon Ruderich <simon@ruderich.org>
Mon, 24 Sep 2012 11:24:01 +0000 (13:24 +0200)
Space instead of equals sign after --param.

bin/blhc
t/logs/good

index b77420d1e9af4fea72704cc834cdea74abd5e9a6..c13f3b6961b1a41ecfcf8ef91fd6c4433ba05e1e 100755 (executable)
--- a/bin/blhc
+++ b/bin/blhc
@@ -190,7 +190,7 @@ my @def_cflags_fortify = (
 );
 my @def_cflags_stack = (
     '-fstack-protector',
-    '--param=ssp-buffer-size=4',
+    '--param[= ]ssp-buffer-size=4',
 );
 my @def_cflags_pie = (
     '-fPIE',
@@ -252,6 +252,7 @@ my @flag_refs_all = (
 my %flag_renames = (
     '-O(?:2|3)'         => '-O2',
     '-Wformat(?:=2)?'   => '-Wformat',
+    '--param[= ]ssp-buffer-size=4' => '--param=ssp-buffer-size=4',
     '-Wl,(?:-z,)?relro' => '-Wl,-z,relro',
     '-Wl,(?:-z,)?now'   => '-Wl,-z,now',
 );
index 9837879aef1d2308d1e0d654f99c4845fa83f457..a345c7bea4f63b1a8ad86206efcb0516b182db36 100644 (file)
@@ -27,6 +27,9 @@ gcc -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat=2 -Werror=format
 gcc -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Wformat-security -Werror=format-security -D_FORTIFY_SOURCE=2 -Wl,-z,relro -o test test.c -ltest
 gcc -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Wformat-security -Werror=format-security -D_FORTIFY_SOURCE=2 -shared -fPIC -Wl,-z,relro -o test.so test.c -ltest
 
+# --parm=ssp-buffer-size=4 can also be written with a space.
+gcc -g -O2 -fstack-protector --param ssp-buffer-size=4 -Wformat -Wformat-security -Werror=format-security -D_FORTIFY_SOURCE=2 -c test.c
+
 g++ -D_FORTIFY_SOURCE=2  -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Wformat-security -Werror=format-security -pthread -o ./testProgram -Wl,-z,relro ../src/test/testProgram.cpp
 g++  -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Wformat-security -Werror=format-security -pthread -Wl,-z,relro -o ../src/test/bin/test ../src/test/objs/test.o