Gentoo Archives: gentoo-commits

From: Sergei Trofimovich <slyfox@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-libs/glibc/
Date: Mon, 09 Apr 2018 06:23:36
Message-Id: 1523255005.c7684eaa754323674d11a2a6e6e46e5d1e079a45.slyfox@gentoo
1 commit: c7684eaa754323674d11a2a6e6e46e5d1e079a45
2 Author: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
3 AuthorDate: Mon Apr 9 06:23:09 2018 +0000
4 Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
5 CommitDate: Mon Apr 9 06:23:25 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c7684eaa
7
8 sys-libs/glibc: fix USE=headers-only install for powerpc64le target
9
10 glibc-2.27 needs 2 more sanity checks from native compiler to pass configure:
11 libc_cv_compiler_powerpc64le_binary128_ok=yes
12 libc_cv_target_power8_ok=yes
13
14 Notices when tried clean toolchain botstrap for bug #652724
15
16 Bug: https://bugs.gentoo.org/652724
17 Package-Manager: Portage-2.3.28, Repoman-2.3.9
18
19 sys-libs/glibc/glibc-2.27-r1.ebuild | 2 ++
20 sys-libs/glibc/glibc-9999.ebuild | 2 ++
21 2 files changed, 4 insertions(+)
22
23 diff --git a/sys-libs/glibc/glibc-2.27-r1.ebuild b/sys-libs/glibc/glibc-2.27-r1.ebuild
24 index 3cc1a137ada..523de8fcfa8 100644
25 --- a/sys-libs/glibc/glibc-2.27-r1.ebuild
26 +++ b/sys-libs/glibc/glibc-2.27-r1.ebuild
27 @@ -962,6 +962,7 @@ glibc_headers_configure() {
28 libc_cv_asm_cfi_directives=yes
29 libc_cv_broken_visibility_attribute=no
30 libc_cv_c_cleanup=yes
31 + libc_cv_compiler_powerpc64le_binary128_ok=yes
32 libc_cv_forced_unwind=yes
33 libc_cv_gcc___thread=yes
34 libc_cv_mlong_double_128=yes
35 @@ -969,6 +970,7 @@ glibc_headers_configure() {
36 libc_cv_ppc_machine=yes
37 libc_cv_ppc_rel16=yes
38 libc_cv_predef_fortify_source=no
39 + libc_cv_target_power8_ok=yes
40 libc_cv_visibility_attribute=yes
41 libc_cv_z_combreloc=yes
42 libc_cv_z_execstack=yes
43
44 diff --git a/sys-libs/glibc/glibc-9999.ebuild b/sys-libs/glibc/glibc-9999.ebuild
45 index 519bc28c954..24e9f43bde8 100644
46 --- a/sys-libs/glibc/glibc-9999.ebuild
47 +++ b/sys-libs/glibc/glibc-9999.ebuild
48 @@ -962,6 +962,7 @@ glibc_headers_configure() {
49 libc_cv_asm_cfi_directives=yes
50 libc_cv_broken_visibility_attribute=no
51 libc_cv_c_cleanup=yes
52 + libc_cv_compiler_powerpc64le_binary128_ok=yes
53 libc_cv_forced_unwind=yes
54 libc_cv_gcc___thread=yes
55 libc_cv_mlong_double_128=yes
56 @@ -969,6 +970,7 @@ glibc_headers_configure() {
57 libc_cv_ppc_machine=yes
58 libc_cv_ppc_rel16=yes
59 libc_cv_predef_fortify_source=no
60 + libc_cv_target_power8_ok=yes
61 libc_cv_visibility_attribute=yes
62 libc_cv_z_combreloc=yes
63 libc_cv_z_execstack=yes