since gcc 4.0 and 4.1 (still) don't support profiles,
I am trying to secure my system without hardened use-flag (I had troubles with hardened gentoo) but with some other use-flags, cflags and ldflags:
I use the following flags and have some questions:
CFLAGS="${CFLAGS} -D_FORTIFY_SOURCE=1"
==> would it do much harm to the system to change the setting to "2" (modifying all apps ?!) ?
LDFLAGS="-Wl,-z,relro -Wl,-z,combreloc"
USEFLAGS="pic" (and more, I've made bad experience with pie, some applications such as xorg-server/xorg-x11 didn't run)
I've found the following cflag on the net:
"-DG_DISABLE_ASSERT" what does it actually do?
Thanks in advance for your input


