From 80cf9160dbc749956ac09a4b2f29ce6144626518 Mon Sep 17 00:00:00 2001 From: "Rob Swindell (on Debian Linux)" <rob@synchro.net> Date: Mon, 5 Jun 2023 17:34:47 -0700 Subject: [PATCH] Document the new FORTIFY and SANITIZE options --- src/build/Common.gmake | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/build/Common.gmake b/src/build/Common.gmake index fae8b7b31c..d69aedcef2 100644 --- a/src/build/Common.gmake +++ b/src/build/Common.gmake @@ -53,8 +53,12 @@ # (GCC/DEBUG only) # # GCOV - Generates binaries that produce gcov data # # (GCC/DEBUG only) # +# FORTIFY - Generates binaries that use _FORTIFY_SOURCE option # +# (DEBUG only) # +# SANITIZE - Enable the AddressSanitizer (ASan) and UB Sanitizer # +# (DEBUG only) # # RELEASE - Create a release build # -# (Mutually exclusive, if both are set, RELEASE # +# (Mutually exclusive, if DEBUG is set, RELEASE # # is cleared) # # USE_UPROFILE - Builds using information generated by UPROFILE. # # (RELEASE builds only) # -- GitLab