diff options
author | Andreas Hasenack <andreas@mandriva.com> | 2007-06-25 18:58:17 +0000 |
---|---|---|
committer | Andreas Hasenack <andreas@mandriva.com> | 2007-06-25 18:58:17 +0000 |
commit | 33e605d8f06ec3b72b6b2ab31fe476b5efce941b (patch) | |
tree | 8810523ef507af6f64760a7f7068a33e28a8e16f | |
parent | 0cdc8c93ae1e44a2db2d2250eb6d56429af39dd7 (diff) | |
download | rpm-setup-33e605d8f06ec3b72b6b2ab31fe476b5efce941b.tar rpm-setup-33e605d8f06ec3b72b6b2ab31fe476b5efce941b.tar.gz rpm-setup-33e605d8f06ec3b72b6b2ab31fe476b5efce941b.tar.bz2 rpm-setup-33e605d8f06ec3b72b6b2ab31fe476b5efce941b.tar.xz rpm-setup-33e605d8f06ec3b72b6b2ab31fe476b5efce941b.zip |
- use -fstack-protector by default with a reduced size parameter (4 bytes, taken
from fedora)
- only use -fstack-protector-all for serverbuild (should we really be doing this?)
- dropped -fno-omit-frame-pointer from serverbuild macro according to
discussion on cooker. Seems it was only there because of libsafe, which is no
longer used
-rw-r--r-- | macros.in | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -76,7 +76,8 @@ # common compilation flags %_fortify_cflags -Wp,-D_FORTIFY_SOURCE=2 -%__common_cflags -O2 %{debugcflags} -pipe %{?_fortify_cflags:%_fortify_cflags} -fexceptions +%_ssp_cflags -fstack-protector --param=ssp-buffer-size=4 +%__common_cflags -O2 %{debugcflags} -pipe %{?_fortify_cflags:%_fortify_cflags} %{?_ssp_cflags:%_ssp_cflags} -fexceptions #============================================================================== # ---- Optional rpmrc macros. @@ -434,7 +435,7 @@ then %{_scrollkeeper_bin} -q || true ; fi \ # # Servers opt flags -%serverbuild export CFLAGS="%optflags -fno-omit-frame-pointer -fstack-protector"; export CXXFLAGS="%optflags -fno-omit-frame-pointer -fstack-protector"; export RPM_OPT_FLAGS="%optflags -fno-omit-frame-pointer -fstack-protector" \ +%serverbuild export CFLAGS="%optflags -fstack-protector-all"; export CXXFLAGS="%optflags -fstack-protector-all"; export RPM_OPT_FLAGS="%optflags -fstack-protector-all" \ %{nil} %__libtoolize_configure %{?__libtoolize:(cd $CONFIGURE_TOP; [ -f configure.in -o -f configure.ac ] && %{__libtoolize} --copy --force)} |