This is the mail archive of the elfutils-devel@sourceware.org mailing list for the elfutils project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [PATCH] Add -D_FORTIFY_SOURCE=2 to CFLAGS if possible.


On 09 Feb 2017 21:13, Mark Wielaard wrote:
> +# See if we can add -D_FORTIFY_SOURCE=2. Don't do it if it is already
> +# (differently) defined or if it generates warnings/errors because we
> +# don't use the right optimisation level (string.h will warn about that).
> +AC_MSG_CHECKING([whether to add -D_FORTIFY_SOURCE=2 to CFLAGS])

-D flags should be in CPPFLAGS ...

> +case "$CFLAGS" in
> +  *-D_FORTIFY_SOURCE=2*)
> +    AC_MSG_RESULT([no, already there])
> +    ;;
> +  *)
> +    save_CFLAGS="$CFLAGS"
> +    CFLAGS="-D_FORTIFY_SOURCE=2 -Werror $CFLAGS"
> +    AC_COMPILE_IFELSE([AC_LANG_SOURCE([[
> +      #include <string.h>
> +      int main() { return 0; }
> +    ]])], [ AC_MSG_RESULT([yes])
> +            CFLAGS="-D_FORTIFY_SOURCE=2 $save_CFLAGS" ],
> +          [ AC_MSG_RESULT([no])
> +            CFLAGS="$save_CFLAGS"])
> +  ;;

why not AC_PREPROC_IFELSE and check if _FORTIFY_SOURCE is defined ?
-mike

Attachment: signature.asc
Description: Digital signature


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]