From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-qk1-x72a.google.com (mail-qk1-x72a.google.com [IPv6:2607:f8b0:4864:20::72a]) by sourceware.org (Postfix) with ESMTPS id 74E41382D43A for ; Fri, 5 Mar 2021 20:15:38 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org 74E41382D43A Received: by mail-qk1-x72a.google.com with SMTP id a9so3243154qkn.13 for ; Fri, 05 Mar 2021 12:15:38 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:subject:date:message-id:in-reply-to :references:mime-version:content-transfer-encoding; bh=T5w6NDVkaRgGORrmAPuXjX146hX4+CM/p+Pj1+omZf8=; b=IhxGJndrBEBOnTL4tFjohiuOPR4ePKhNvSu2lG6rvperNxKq52Jhhjgc7y6I/Uow72 duVCDPcXzFPRYeR3rpSjjbxbw66nFQMvKD5t2J9qP5vbAnRBC9Wx1XcUt8GTTnF2YHjp sSnACCrpK6CWBxalfiUsmgVU3YagX6YWi4d3gdVW0Dkeg4fmVwK9T25AIUPNOLLbSE0J 3blhAeUodG/Gma7cIQg+el7ifaKb/exbejH4HE/EKJ0bg5Dsl2q7LvVf5WYHNVa/jbij qABYdcqK+rasvgjzRmy0C5p98D4p90MhgUre52W9UjrVu7s1z15w8P6NcL3vkJvDsrP7 7LAw== X-Gm-Message-State: AOAM530ibQForRC6JVKSXSaxTROe+QqlULwLs0Q1b6GG9K13V6dIM22A bOrtHn5VxN6JcBdLdJSJVCUebN+n0JMg/w== X-Google-Smtp-Source: ABdhPJzoEiMkmg2IXOTHd5+K98eGVaSwDQNJAJmjGYuQvO308pSv/BIWsd8h3EFZVGdHhoZd5DhPUQ== X-Received: by 2002:a37:6c01:: with SMTP id h1mr3035852qkc.182.1614975337999; Fri, 05 Mar 2021 12:15:37 -0800 (PST) Received: from localhost.localdomain ([177.194.48.209]) by smtp.googlemail.com with ESMTPSA id c5sm2526145qkl.21.2021.03.05.12.15.37 for (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Fri, 05 Mar 2021 12:15:37 -0800 (PST) From: Adhemerval Zanella To: libc-alpha@sourceware.org Subject: [PATCH 13/52] linux: mips: Split libanl.abilist in n32 and n64 Date: Fri, 5 Mar 2021 17:14:39 -0300 Message-Id: <20210305201518.798584-14-adhemerval.zanella@linaro.org> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20210305201518.798584-1-adhemerval.zanella@linaro.org> References: <20210305201518.798584-1-adhemerval.zanella@linaro.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Status: No, score=-13.2 required=5.0 tests=BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, GIT_PATCH_0, KAM_NUMSUBJECT, RCVD_IN_DNSWL_NONE, 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: Fri, 05 Mar 2021 20:15:39 -0000 The n32 will require the 64 bit time symbols for y2038 support. --- sysdeps/unix/sysv/linux/mips/mips64/{ => n32}/libanl.abilist | 0 sysdeps/unix/sysv/linux/mips/mips64/n64/libanl.abilist | 4 ++++ 2 files changed, 4 insertions(+) rename sysdeps/unix/sysv/linux/mips/mips64/{ => n32}/libanl.abilist (100%) create mode 100644 sysdeps/unix/sysv/linux/mips/mips64/n64/libanl.abilist diff --git a/sysdeps/unix/sysv/linux/mips/mips64/libanl.abilist b/sysdeps/unix/sysv/linux/mips/mips64/n32/libanl.abilist similarity index 100% rename from sysdeps/unix/sysv/linux/mips/mips64/libanl.abilist rename to sysdeps/unix/sysv/linux/mips/mips64/n32/libanl.abilist diff --git a/sysdeps/unix/sysv/linux/mips/mips64/n64/libanl.abilist b/sysdeps/unix/sysv/linux/mips/mips64/n64/libanl.abilist new file mode 100644 index 0000000000..d9a5ed015d --- /dev/null +++ b/sysdeps/unix/sysv/linux/mips/mips64/n64/libanl.abilist @@ -0,0 +1,4 @@ +GLIBC_2.2.3 gai_cancel F +GLIBC_2.2.3 gai_error F +GLIBC_2.2.3 gai_suspend F +GLIBC_2.2.3 getaddrinfo_a F -- 2.25.1