* [PATCH v2] usbip: Use _FORTIFY_SOURCE=2 instead of (implicitly) =1
@ 2023-05-03 17:36 Uwe Kleine-König
2023-05-04 3:40 ` Hongren Zheng
0 siblings, 1 reply; 2+ messages in thread
From: Uwe Kleine-König @ 2023-05-03 17:36 UTC (permalink / raw)
To: Valentina Manea, Shuah Khan; +Cc: Hongren Zheng, linux-usb
_FORTIFY_SOURCE=2 uses more and stricter checks. This is what e.g.
Debian recommends to build packages with.
While at it fix a typo in the output of ./configure --help.
Signed-off-by: Uwe Kleine-König <ukleinek@debian.org>
---
Changes since (implicit) v1:
- s/_FORTIFY_SROUCE/_FORTIFY_SOURCE/ in the help text, noted (off-list)
by Cyril Brulebois.
tools/usb/usbip/configure.ac | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/tools/usb/usbip/configure.ac b/tools/usb/usbip/configure.ac
index 607d05c5ccfd..8debf934f8b7 100644
--- a/tools/usb/usbip/configure.ac
+++ b/tools/usb/usbip/configure.ac
@@ -94,11 +94,11 @@ AC_SUBST([USBIDS_DIR])
AC_MSG_CHECKING([whether to use fortify])
AC_ARG_WITH([fortify],
[AS_HELP_STRING([--with-fortify],
- [use _FORTIFY_SROUCE option when compiling)])],
+ [use _FORTIFY_SOURCE=2 option when compiling)])],
dnl [ACTION-IF-GIVEN]
[if test "$withval" = "yes"; then
AC_MSG_RESULT([yes])
- CFLAGS="$CFLAGS -D_FORTIFY_SOURCE -O"
+ CFLAGS="$CFLAGS -D_FORTIFY_SOURCE=2 -O"
else
AC_MSG_RESULT([no])
CFLAGS="$CFLAGS -U_FORTIFY_SOURCE"
--
2.39.2
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH v2] usbip: Use _FORTIFY_SOURCE=2 instead of (implicitly) =1
2023-05-03 17:36 [PATCH v2] usbip: Use _FORTIFY_SOURCE=2 instead of (implicitly) =1 Uwe Kleine-König
@ 2023-05-04 3:40 ` Hongren Zheng
0 siblings, 0 replies; 2+ messages in thread
From: Hongren Zheng @ 2023-05-04 3:40 UTC (permalink / raw)
To: Uwe Kleine-König; +Cc: Valentina Manea, Shuah Khan, linux-usb
On Wed, May 03, 2023 at 07:36:22PM +0200, Uwe Kleine-König wrote:
> _FORTIFY_SOURCE=2 uses more and stricter checks. This is what e.g.
> Debian recommends to build packages with.
>
> While at it fix a typo in the output of ./configure --help.
>
> Signed-off-by: Uwe Kleine-König <ukleinek@debian.org>
Reviewed-By: Hongren Zheng <i@zenithal.me>
I've tested that with this patch the code still
compiles when --with-fortify and `usbip list/attach`
worked.
> ---
> Changes since (implicit) v1:
>
> - s/_FORTIFY_SROUCE/_FORTIFY_SOURCE/ in the help text, noted (off-list)
> by Cyril Brulebois.
>
> tools/usb/usbip/configure.ac | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/tools/usb/usbip/configure.ac b/tools/usb/usbip/configure.ac
> index 607d05c5ccfd..8debf934f8b7 100644
> --- a/tools/usb/usbip/configure.ac
> +++ b/tools/usb/usbip/configure.ac
> @@ -94,11 +94,11 @@ AC_SUBST([USBIDS_DIR])
> AC_MSG_CHECKING([whether to use fortify])
> AC_ARG_WITH([fortify],
> [AS_HELP_STRING([--with-fortify],
> - [use _FORTIFY_SROUCE option when compiling)])],
> + [use _FORTIFY_SOURCE=2 option when compiling)])],
> dnl [ACTION-IF-GIVEN]
> [if test "$withval" = "yes"; then
> AC_MSG_RESULT([yes])
> - CFLAGS="$CFLAGS -D_FORTIFY_SOURCE -O"
> + CFLAGS="$CFLAGS -D_FORTIFY_SOURCE=2 -O"
> else
> AC_MSG_RESULT([no])
> CFLAGS="$CFLAGS -U_FORTIFY_SOURCE"
> --
> 2.39.2
>
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2023-05-04 3:41 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-05-03 17:36 [PATCH v2] usbip: Use _FORTIFY_SOURCE=2 instead of (implicitly) =1 Uwe Kleine-König
2023-05-04 3:40 ` Hongren Zheng
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox