2023-05-21 19:12:02 +00:00
|
|
|
From 12b0a32aa19334c1b5dd20c9cc3b0ca885e973ce Mon Sep 17 00:00:00 2001
|
2020-08-21 10:18:02 +00:00
|
|
|
From: Ariadne Conill <ariadne@dereferenced.org>
|
|
|
|
Date: Fri, 21 Aug 2020 06:46:22 +0000
|
2023-05-21 19:12:02 +00:00
|
|
|
Subject: [PATCH 04/32] Turn on -D_FORTIFY_SOURCE=2 by default for C, C++,
|
2023-05-15 08:15:31 +00:00
|
|
|
ObjC, ObjC++, if the optimization level is > 0
|
2018-12-12 17:14:55 +00:00
|
|
|
|
|
|
|
---
|
2022-08-13 15:17:36 +00:00
|
|
|
gcc/c-family/c-cppbuiltin.cc | 4 ++++
|
|
|
|
gcc/doc/invoke.texi | 6 ++++++
|
2020-08-21 10:18:02 +00:00
|
|
|
2 files changed, 10 insertions(+)
|
2018-12-12 17:14:55 +00:00
|
|
|
|
2022-08-13 15:17:36 +00:00
|
|
|
diff --git a/gcc/c-family/c-cppbuiltin.cc b/gcc/c-family/c-cppbuiltin.cc
|
2023-05-21 19:12:02 +00:00
|
|
|
index 5d64625fcd7..868d69506e4 100644
|
2022-08-13 15:17:36 +00:00
|
|
|
--- a/gcc/c-family/c-cppbuiltin.cc
|
|
|
|
+++ b/gcc/c-family/c-cppbuiltin.cc
|
2023-05-21 19:12:02 +00:00
|
|
|
@@ -1546,6 +1546,10 @@ c_cpp_builtins (cpp_reader *pfile)
|
2020-08-21 10:18:02 +00:00
|
|
|
builtin_define_with_value ("__REGISTER_PREFIX__", REGISTER_PREFIX, 0);
|
|
|
|
builtin_define_with_value ("__USER_LABEL_PREFIX__", user_label_prefix, 0);
|
|
|
|
|
|
|
|
+ /* Fortify Source enabled by default for optimization levels > 0 */
|
|
|
|
+ if (optimize)
|
|
|
|
+ builtin_define_with_int_value ("_FORTIFY_SOURCE", 2);
|
|
|
|
+
|
|
|
|
/* Misc. */
|
|
|
|
if (flag_gnu89_inline)
|
|
|
|
cpp_define (pfile, "__GNUC_GNU_INLINE__");
|
|
|
|
diff --git a/gcc/doc/invoke.texi b/gcc/doc/invoke.texi
|
2023-05-21 19:12:02 +00:00
|
|
|
index 158b7bcb81e..cc9972f907b 100644
|
2018-12-12 17:14:55 +00:00
|
|
|
--- a/gcc/doc/invoke.texi
|
|
|
|
+++ b/gcc/doc/invoke.texi
|
2023-05-21 19:12:02 +00:00
|
|
|
@@ -11866,6 +11866,12 @@ also turns on the following optimization flags:
|
2018-12-12 17:14:55 +00:00
|
|
|
Please note the warning under @option{-fgcse} about
|
|
|
|
invoking @option{-O2} on programs that use computed gotos.
|
|
|
|
|
|
|
|
+NOTE: In Alpine Linux, @option{-D_FORTIFY_SOURCE=2} is
|
|
|
|
+set by default, and is activated when @option{-O} is set to 2 or higher.
|
|
|
|
+This enables additional compile-time and run-time checks for several libc
|
|
|
|
+functions. To disable, specify either @option{-U_FORTIFY_SOURCE} or
|
|
|
|
+@option{-D_FORTIFY_SOURCE=0}.
|
|
|
|
+
|
|
|
|
@opindex O3
|
2023-05-15 08:15:31 +00:00
|
|
|
@item -O3
|
2018-12-12 17:14:55 +00:00
|
|
|
Optimize yet more. @option{-O3} turns on all optimizations specified
|
2023-05-15 08:15:31 +00:00
|
|
|
--
|
|
|
|
2.40.1
|
|
|
|
|