From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.129.124]) by sourceware.org (Postfix) with ESMTPS id A77573858D32 for ; Thu, 6 Apr 2023 16:13:44 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org A77573858D32 Authentication-Results: sourceware.org; dmarc=pass (p=none dis=none) header.from=redhat.com Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=redhat.com DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1680797624; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version:content-type:content-type; bh=PXgIjY4uLdeSOIyaqpZ62s+1hzVZY91esliZQWtdVHc=; b=O2jcNSCA+iVzyyhcKTdwfQtb6zg6wwmkK3RW46fN7jTYJCqsfx6TQhFLGpvvn+ahOfLpHq Ma3tg6PDNOgKfxcVJN3fKx32I691V2+Nyw8xqcdr3y2OLQZQTFrnDyQqBSUTFpYeYGr1KG IdDwAN+1A6MDedK5B1T/fIaC9dXfEdU= Received: from mimecast-mx02.redhat.com (mx3-rdu2.redhat.com [66.187.233.73]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id us-mta-199-jtv9JA2nNcKupIlwk3UNrA-1; Thu, 06 Apr 2023 12:13:41 -0400 X-MC-Unique: jtv9JA2nNcKupIlwk3UNrA-1 Received: from smtp.corp.redhat.com (int-mx01.intmail.prod.int.rdu2.redhat.com [10.11.54.1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id 902B4381458B for ; Thu, 6 Apr 2023 16:13:41 +0000 (UTC) Received: from oldenburg.str.redhat.com (unknown [10.39.192.84]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 1828640C20FA for ; Thu, 6 Apr 2023 16:13:40 +0000 (UTC) From: Florian Weimer To: libc-alpha@sourceware.org Subject: [PATCH] debug: Re-flow and sort routines variable in Makefile Date: Thu, 06 Apr 2023 18:13:39 +0200 Message-ID: <871qkxm1jg.fsf@oldenburg.str.redhat.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/28.2 (gnu/linux) MIME-Version: 1.0 X-Scanned-By: MIMEDefang 3.1 on 10.11.54.1 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain X-Spam-Status: No, score=-10.9 required=5.0 tests=BAYES_00,DKIMWL_WL_HIGH,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,GIT_PATCH_0,RCVD_IN_DNSWL_NONE,RCVD_IN_MSPIKE_H2,SPF_HELO_NONE,SPF_NONE,TXREP autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org List-Id: Tested on x86-64-linux-gnu. --- 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 \ + 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