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 [216.205.24.124]) by sourceware.org (Postfix) with ESMTP id 9A3F5389852F for ; Mon, 31 May 2021 14:11:29 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org 9A3F5389852F Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-271-ulI66bnMMYqmS1KIvjkGyw-1; Mon, 31 May 2021 10:11:27 -0400 X-MC-Unique: ulI66bnMMYqmS1KIvjkGyw-1 Received: from smtp.corp.redhat.com (int-mx06.intmail.prod.int.phx2.redhat.com [10.5.11.16]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id 8B4CB501EC for ; Mon, 31 May 2021 14:11:26 +0000 (UTC) Received: from oldenburg.str.redhat.com (ovpn-113-228.ams2.redhat.com [10.36.113.228]) by smtp.corp.redhat.com (Postfix) with ESMTPS id E38A35C1B4 for ; Mon, 31 May 2021 14:11:25 +0000 (UTC) From: Florian Weimer To: libc-alpha@sourceware.org Subject: [PATCH 03/16] scripts/versions.awk: Add local: * to all version nodes In-Reply-To: References: X-From-Line: 1d01e695b5103609157347b5008d822c2fd02770 Mon Sep 17 00:00:00 2001 Message-Id: <1d01e695b5103609157347b5008d822c2fd02770.1622469908.git.fweimer@redhat.com> Date: Mon, 31 May 2021 16:11:23 +0200 User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.2 (gnu/linux) MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.16 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain X-Spam-Status: No, score=-12.7 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_LOW, RCVD_IN_MSPIKE_H4, RCVD_IN_MSPIKE_WL, SPF_HELO_NONE, SPF_PASS, TXREP autolearn=ham autolearn_force=no version=3.4.2 X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on server2.sourceware.org X-BeenThere: libc-alpha@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Libc-alpha mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 May 2021 14:11:30 -0000 This requires that all exported symbol versions are listed in Versions files. It results in more consistent behavior across architectures because previously, symbols could be exported via explicit versioned_symbol and compat_symbol clauses if the version node existed in some Versions file (without listing the symbol) and it was not the base version for the library. --- scripts/versions.awk | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/scripts/versions.awk b/scripts/versions.awk index 3291123666..a7154480e3 100644 --- a/scripts/versions.awk +++ b/scripts/versions.awk @@ -95,10 +95,7 @@ function ord(c) { function closeversion(name, oldname) { - if (firstinfile) { - printf(" local:\n *;\n") > outfile; - firstinfile = 0; - } + printf(" local:\n *;\n") > outfile; # This version inherits from the last one only if they # have the same nonnumeric prefix, i.e. GLIBC_x.y and GLIBC_x.z # or FOO_x and FOO_y but not GLIBC_x and FOO_y. @@ -157,7 +154,6 @@ END { oldlib = $1; real_outfile = buildroot oldlib ".map"; outfile = real_outfile "T"; - firstinfile = 1; veryoldver = ""; printf(" %s.map", oldlib); } -- 2.31.1