From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id E3810138CD1 for ; Tue, 26 May 2015 15:58:59 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D724AE085B; Tue, 26 May 2015 15:58:58 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 68E8FE0855 for ; Tue, 26 May 2015 15:58:58 +0000 (UTC) Received: from [192.168.0.13] (ip174-67-205-96.oc.oc.cox.net [174.67.205.96]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) (Authenticated sender: zmedico) by smtp.gentoo.org (Postfix) with ESMTPSA id 98AA9340D15 for ; Tue, 26 May 2015 15:58:57 +0000 (UTC) Message-ID: <5564983E.20306@gentoo.org> Date: Tue, 26 May 2015 08:58:54 -0700 From: Zac Medico User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.5.0 Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-portage-dev@lists.gentoo.org Reply-to: gentoo-portage-dev@lists.gentoo.org MIME-Version: 1.0 To: gentoo-portage-dev@lists.gentoo.org Subject: Re: [gentoo-portage-dev] [PATCH v2] install-qa-check.d: issue warnings for 32bit ELFs not using LFS References: <1432626293-22692-1-git-send-email-vapier@gentoo.org> <1432650278-31471-1-git-send-email-vapier@gentoo.org> In-Reply-To: <1432650278-31471-1-git-send-email-vapier@gentoo.org> Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 7bit X-Archives-Salt: ba3a1f22-6325-447e-8cc0-d76a48dc3284 X-Archives-Hash: 02280d36eac0264066972bbc976c0cd5 On 05/26/2015 07:24 AM, Mike Frysinger wrote: > + # Only check on 32-bit systems. Filtering by $ARCH here isn't perfect, but > + # it should be good enough for our needs. > + case ${ARCH} in > + arm|mips|ppc|sh|x86) ;; > + *) return ;; > + esac Shouldn't we also enable this for 64-bit archs when multilib is enabled? I've experienced a problem with multilib pkgconfig and 64-bit inodes, and if I enable this check for amd64 then I get these warnings for dev-util/pkgconfig-0.28-r2: * QA Notice: The following files were not built with LFS support: * Please see https://bugs.gentoo.org/471102 for details. * readdir@@GLIBC_2.2.5,fopen@@GLIBC_2.2.5 usr/bin/x86_64-pc-linux-gnu-pkg-config * readdir@@GLIBC_2.2.5,fopen@@GLIBC_2.2.5 usr/bin/pkg-config * fopen@@GLIBC_2.1,readdir@@GLIBC_2.0 usr/bin/i686-pc-linux-gnu-pkg-config -- Thanks, Zac