public inbox for libc-alpha@sourceware.org
 help / color / mirror / Atom feed
From: Adhemerval Zanella Netto <adhemerval.zanella@linaro.org>
To: libc-alpha@sourceware.org, Florian Weimer <fweimer@redhat.com>
Subject: Re: [PATCH] debug: Re-flow and sort routines variable in Makefile
Date: Tue, 11 Apr 2023 14:38:59 -0300	[thread overview]
Message-ID: <93efc4cb-f5a6-b04a-a4fa-60f73a4ad1e1@linaro.org> (raw)
In-Reply-To: <871qkxm1jg.fsf@oldenburg.str.redhat.com>



On 06/04/23 13:13, Florian Weimer via Libc-alpha wrote:
> Tested on x86-64-linux-gnu.

LGTM with the missing line below.

Reviewed-by: Adhemerval Zanella  <adhemerval.zanella@linaro.org>

> 
> ---
>  debug/Makefile | 110 ++++++++++++++++++++++++++++++++++++++++++++-------------
>  1 file changed, 86 insertions(+), 24 deletions(-)
> 
> diff --git a/debug/Makefile b/debug/Makefile
> index 52f9a7852c..4a4b37de7a 100644
> --- a/debug/Makefile
> +++ b/debug/Makefile
> @@ -28,30 +28,92 @@ headers	:= execinfo.h
>  # Note that ptsname_r_chk and getlogin_r are not here, but in
>  # login/Makefile instead.  If that subdir is omitted from the
>  # build, its _FORTIFY_SOURCE support will be too.
> -routines  = backtrace backtracesyms backtracesymsfd noophooks \
> -	    memcpy_chk memmove_chk mempcpy_chk memset_chk stpcpy_chk \
> -	    strcat_chk strcpy_chk strncat_chk strncpy_chk stpncpy_chk \
> -	    sprintf_chk vsprintf_chk snprintf_chk vsnprintf_chk \
> -	    printf_chk fprintf_chk vprintf_chk vfprintf_chk \
> -	    gets_chk chk_fail readonly-area fgets_chk fgets_u_chk \
> -	    read_chk pread_chk pread64_chk recv_chk recvfrom_chk \
> -	    readlink_chk readlinkat_chk getwd_chk getcwd_chk \
> -	    realpath_chk fread_chk fread_u_chk \
> -	    wctomb_chk wcscpy_chk wmemcpy_chk wmemmove_chk wmempcpy_chk \
> -	    wcpcpy_chk wcsncpy_chk wcscat_chk wcsncat_chk wmemset_chk \
> -	    wcpncpy_chk \
> -	    swprintf_chk vswprintf_chk wprintf_chk fwprintf_chk \
> -	    vwprintf_chk vfwprintf_chk fgetws_chk fgetws_u_chk \
> -	    confstr_chk getgroups_chk ttyname_r_chk \
> -	    gethostname_chk getdomainname_chk wcrtomb_chk mbsnrtowcs_chk \
> -	    wcsnrtombs_chk mbsrtowcs_chk wcsrtombs_chk mbstowcs_chk \
> -	    wcstombs_chk asprintf_chk vasprintf_chk dprintf_chk \
> -	    vdprintf_chk obprintf_chk vobprintf_chk \
> -	    longjmp_chk ____longjmp_chk \
> -	    fdelt_chk poll_chk ppoll_chk \
> -	    explicit_bzero_chk \
> -	    stack_chk_fail fortify_fail \
> -	    $(static-only-routines)
> +routines = \
> +  ____longjmp_chk \
> +  asprintf_chk \
> +  backtrace \
> +  backtracesyms \
> +  backtracesymsfd \
> +  chk_fail \
> +  confstr_chk \
> +  dprintf_chk \
> +  explicit_bzero_chk \
> +  fdelt_chk \
> +  fgets_chk \
> +  fgets_u_chk \
> +  fgetws_chk \
> +  fgetws_u_chk \
> +  fprintf_chk \
> +  fread_chk \
> +  fread_u_chk \
> +  fwprintf_chk \
> +  getcwd_chk \
> +  getdomainname_chk \
> +  getgroups_chk \
> +  gethostname_chk \
> +  gets_chk \
> +  getwd_chk \
> +  longjmp_chk \
> +  mbsnrtowcs_chk \
> +  mbsrtowcs_chk \
> +  mbstowcs_chk \
> +  memcpy_chk \
> +  memmove_chk \
> +  mempcpy_chk \
> +  memset_chk \
> +  noophooks \
> +  obprintf_chk \
> +  poll_chk \
> +  ppoll_chk \
> +  pread64_chk \
> +  pread_chk \
> +  printf_chk \
> +  read_chk \
> +  readlink_chk \
> +  readlinkat_chk \
> +  readonly-area \
> +  realpath_chk \
> +  recv_chk \
> +  recvfrom_chk \
> +  snprintf_chk \
> +  sprintf_chk \
> +  stack_chk_fail fortify_fail \

Here.

> +  stpcpy_chk \
> +  stpncpy_chk \
> +  strcat_chk \
> +  strcpy_chk \
> +  strncat_chk \
> +  strncpy_chk \
> +  swprintf_chk \
> +  ttyname_r_chk \
> +  vasprintf_chk \
> +  vdprintf_chk \
> +  vfprintf_chk \
> +  vfwprintf_chk \
> +  vobprintf_chk \
> +  vprintf_chk \
> +  vsnprintf_chk \
> +  vsprintf_chk \
> +  vswprintf_chk \
> +  vwprintf_chk \
> +  wcpcpy_chk \
> +  wcpncpy_chk \
> +  wcrtomb_chk \
> +  wcscat_chk \
> +  wcscpy_chk \
> +  wcsncat_chk \
> +  wcsncpy_chk \
> +  wcsnrtombs_chk \
> +  wcsrtombs_chk \
> +  wcstombs_chk \
> +  wctomb_chk \
> +  wmemcpy_chk \
> +  wmemmove_chk \
> +  wmempcpy_chk \
> +  wmemset_chk \
> +  wprintf_chk \
> +  $(static-only-routines) \
> +  # routines
>  static-only-routines := stack_chk_fail_local
>  
>  # Don't add stack_chk_fail_local.o to libc.a since __stack_chk_fail_local
> 
> base-commit: 0d5cb2ae27c0a163c15e5222fb132bf9d026b14b
> 

      reply	other threads:[~2023-04-11 17:39 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-04-06 16:13 Florian Weimer
2023-04-11 17:38 ` Adhemerval Zanella Netto [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=93efc4cb-f5a6-b04a-a4fa-60f73a4ad1e1@linaro.org \
    --to=adhemerval.zanella@linaro.org \
    --cc=fweimer@redhat.com \
    --cc=libc-alpha@sourceware.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).