Gentoo Archives: gentoo-portage-dev

From: Zac Medico <zmedico@g.o>
To: gentoo-portage-dev@l.g.o
Subject: Re: [gentoo-portage-dev] [PATCH v2] install-qa-check.d: issue warnings for 32bit ELFs not using LFS
Date: Tue, 26 May 2015 15:58:59
Message-Id: 5564983E.20306@gentoo.org
In Reply to: [gentoo-portage-dev] [PATCH v2] install-qa-check.d: issue warnings for 32bit ELFs not using LFS by Mike Frysinger
1 On 05/26/2015 07:24 AM, Mike Frysinger wrote:
2 > + # Only check on 32-bit systems. Filtering by $ARCH here isn't perfect, but
3 > + # it should be good enough for our needs.
4 > + case ${ARCH} in
5 > + arm|mips|ppc|sh|x86) ;;
6 > + *) return ;;
7 > + esac
8
9 Shouldn't we also enable this for 64-bit archs when multilib is enabled?
10 I've experienced a problem with multilib pkgconfig and 64-bit inodes,
11 and if I enable this check for amd64 then I get these warnings for
12 dev-util/pkgconfig-0.28-r2:
13
14 * QA Notice: The following files were not built with LFS support:
15 * Please see https://bugs.gentoo.org/471102 for details.
16 * readdir@@GLIBC_2.2.5,fopen@@GLIBC_2.2.5
17 usr/bin/x86_64-pc-linux-gnu-pkg-config
18 * readdir@@GLIBC_2.2.5,fopen@@GLIBC_2.2.5 usr/bin/pkg-config
19 * fopen@@GLIBC_2.1,readdir@@GLIBC_2.0 usr/bin/i686-pc-linux-gnu-pkg-config
20
21 --
22 Thanks,
23 Zac

Replies