diff options
author | Roland Mc Grath <roland@hack.frob.com> | 2012-05-08 19:44:57 +0200 |
---|---|---|
committer | Andreas Jaeger <jaegerandi@gmail.com> | 2012-05-08 19:44:57 +0200 |
commit | 05c2c9618f583ea4acd69b3fe5ae2a2922dd2ddc (patch) | |
tree | cf5cd345bf757fd5296ff7e0b8dcd7f142fc3d37 /include/features.h | |
parent | 4b30f61a1ea78de9b0e84a54fc6ee96ea70e6ed5 (diff) | |
download | glibc-05c2c9618f583ea4acd69b3fe5ae2a2922dd2ddc.tar.gz glibc-05c2c9618f583ea4acd69b3fe5ae2a2922dd2ddc.tar.xz glibc-05c2c9618f583ea4acd69b3fe5ae2a2922dd2ddc.zip |
Warn if user requests __FORTIFY_SOURCE but it is disabled
[BZ #13979] * include/features.h: Warn if user requests __FORTIFY_SOURCE checking but the checks are disabled for any reason.
Diffstat (limited to 'include/features.h')
-rw-r--r-- | include/features.h | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/include/features.h b/include/features.h index c347555ead..c700871ba5 100644 --- a/include/features.h +++ b/include/features.h @@ -325,14 +325,18 @@ # define __USE_REENTRANT 1 #endif -#if defined _FORTIFY_SOURCE && _FORTIFY_SOURCE > 0 \ - && __GNUC_PREREQ (4, 1) && defined __OPTIMIZE__ && __OPTIMIZE__ > 0 -# if _FORTIFY_SOURCE > 1 +#if defined _FORTIFY_SOURCE && _FORTIFY_SOURCE > 0 +# if !defined __OPTIMIZE__ || __OPTIMIZE__ <= 0 +# warning _FORTIFY_SOURCE requires compiling with optimization (-O) +# elif !__GNUC_PREREQ (4, 1) +# warning _FORTIFY_SOURCE requires GCC 4.1 or later +# elif _FORTIFY_SOURCE > 1 # define __USE_FORTIFY_LEVEL 2 # else # define __USE_FORTIFY_LEVEL 1 # endif -#else +#endif +#ifndef __USE_FORTIFY_LEVEL # define __USE_FORTIFY_LEVEL 0 #endif |