a41fe4
commit 86bf0feb0e3ec8e37872f72499d6ae33406561d7
a41fe4
Author: Siddhesh Poyarekar <siddhesh@sourceware.org>
a41fe4
Date:   Wed Jan 12 18:46:28 2022 +0530
a41fe4
a41fe4
    Enable _FORTIFY_SOURCE=3 for gcc 12 and above
a41fe4
    
a41fe4
    gcc 12 now has support for the __builtin_dynamic_object_size builtin.
a41fe4
    Adapt the macro checks to enable _FORTIFY_SOURCE=3 on gcc 12 and above.
a41fe4
    
a41fe4
    Signed-off-by: Siddhesh Poyarekar <siddhesh@sourceware.org>
a41fe4
    Reviewed-by: Adhemerval Zanella  <adhemerval.zanella@linaro.org>
a41fe4
a41fe4
diff --git a/include/features.h b/include/features.h
a41fe4
index fe9fe16d034fad1b..2e9ca6ec2f4a0380 100644
a41fe4
--- a/include/features.h
a41fe4
+++ b/include/features.h
a41fe4
@@ -381,7 +381,9 @@
a41fe4
 #  warning _FORTIFY_SOURCE requires compiling with optimization (-O)
a41fe4
 # elif !__GNUC_PREREQ (4, 1)
a41fe4
 #  warning _FORTIFY_SOURCE requires GCC 4.1 or later
a41fe4
-# elif _FORTIFY_SOURCE > 2 && __glibc_clang_prereq (9, 0)
a41fe4
+# elif _FORTIFY_SOURCE > 2 && (__glibc_clang_prereq (9, 0)		      \
a41fe4
+			       || __GNUC_PREREQ (12, 0))
a41fe4
+
a41fe4
 #  if _FORTIFY_SOURCE > 3
a41fe4
 #   warning _FORTIFY_SOURCE > 3 is treated like 3 on this platform
a41fe4
 #  endif
a41fe4
diff --git a/misc/sys/cdefs.h b/misc/sys/cdefs.h
a41fe4
index 147339957c4ad490..a17ae0ed87e6163f 100644
a41fe4
--- a/misc/sys/cdefs.h
a41fe4
+++ b/misc/sys/cdefs.h
a41fe4
@@ -124,7 +124,8 @@
a41fe4
 #define __bos0(ptr) __builtin_object_size (ptr, 0)
a41fe4
 
a41fe4
 /* Use __builtin_dynamic_object_size at _FORTIFY_SOURCE=3 when available.  */
a41fe4
-#if __USE_FORTIFY_LEVEL == 3 && __glibc_clang_prereq (9, 0)
a41fe4
+#if __USE_FORTIFY_LEVEL == 3 && (__glibc_clang_prereq (9, 0)		      \
a41fe4
+				 || __GNUC_PREREQ (12, 0))
a41fe4
 # define __glibc_objsize0(__o) __builtin_dynamic_object_size (__o, 0)
a41fe4
 # define __glibc_objsize(__o) __builtin_dynamic_object_size (__o, 1)
a41fe4
 #else