Code

Set -D_FORTIFY_SOURCE=2, and added a comment with link to explaination of this flag.
authorThomas Guyot-Sionnest <dermoth@users.sourceforge.net>
Tue, 5 Aug 2008 11:14:40 +0000 (11:14 +0000)
committerThomas Guyot-Sionnest <dermoth@users.sourceforge.net>
Tue, 5 Aug 2008 11:14:40 +0000 (11:14 +0000)
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@2028 f882894a-f735-0410-b71e-b25c423dba1c

tools/devmode

index 2dff3601b5eeb92a27732e65d143c33810676b91..7ba9ba7845db3dfc772fa2b15584bf6ec6de8afb 100755 (executable)
@@ -1,2 +1,3 @@
 # do "eval tools/devmode" to get pedantic compiler settings
-echo export CFLAGS=\"-g -O3 -D_FORTIFY_SOURCE -pedantic -Wall -W -Wformat=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Wsign-compare -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-noreturn -Wmissing-format-attribute -Wnested-externs -Wunreachable-code -Winline\"
+# Info about -D_FORTIFY_SOURCE: http://gcc.gnu.org/ml/gcc-patches/2004-09/msg02055.html
+echo export CFLAGS=\"-g -O3 -D_FORTIFY_SOURCE=2 -pedantic -Wall -W -Wformat=2 -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Wsign-compare -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-noreturn -Wmissing-format-attribute -Wnested-externs -Wunreachable-code -Winline\"