Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] cross-i686 compiler: keep sysroot /lib symlink
@ 2019-09-11 11:30 voidlinux-github
  2019-09-11 11:31 ` [PR PATCH] [Updated] " voidlinux-github
                   ` (8 more replies)
  0 siblings, 9 replies; 10+ messages in thread
From: voidlinux-github @ 2019-09-11 11:30 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 871 bytes --]

There is a new pull request by zdtcd against master on the void-packages repository

https://github.com/zdtcd/void-packages cross-lib
https://github.com/void-linux/void-packages/pull/14401

cross-i686 compiler: keep sysroot /lib symlink
When packaging Firefox ESR 68.1.0, and cross compile i686 from x86_64,
I received this complains:
> 0:06.67 DEBUG: | /usr/lib/gcc/i686-pc-linux-gnu/9.2.0/../../../../i686-pc-linux-gnu/bin/ld: cannot find /lib/libc.so.6 inside /usr/i686-pc-linux-gnu
> 0:06.67 DEBUG: | /usr/lib/gcc/i686-pc-linux-gnu/9.2.0/../../../../i686-pc-linux-gnu/bin/ld: cannot find /lib/ld-linux.so.2 inside /usr/i686-pc-linux-gnu

I didn't run into this complain when packaging aarch64 from x86_64,
I have a different problem when packaging ppc64le from x86_64


A patch file from https://github.com/void-linux/void-packages/pull/14401.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-cross-lib-14401.patch --]
[-- Type: text/x-diff, Size: 3154 bytes --]

From e42c9b63cafd31781a7876057cea285918b42388 Mon Sep 17 00:00:00 2001
From: Doan Tran Cong Danh <congdanhqx@gmail.com>
Date: Wed, 11 Sep 2019 18:14:31 +0700
Subject: [PATCH 1/2] cross-i686-pc-linux-gnu-libc: keep sysroot /lib symlink

firefox-esr 68.1.0 complains:

> 0:06.67 DEBUG: | /usr/lib/gcc/i686-pc-linux-gnu/9.2.0/../../../../i686-pc-linux-gnu/bin/ld: cannot find /lib/libc.so.6 inside /usr/i686-pc-linux-gnu
> 0:06.67 DEBUG: | /usr/lib/gcc/i686-pc-linux-gnu/9.2.0/../../../../i686-pc-linux-gnu/bin/ld: cannot find /lib/ld-linux.so.2 inside /usr/i686-pc-linux-gnu
---
 srcpkgs/cross-i686-pc-linux-gnu/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/cross-i686-pc-linux-gnu/template b/srcpkgs/cross-i686-pc-linux-gnu/template
index c5b0e414cae..31069653b4c 100644
--- a/srcpkgs/cross-i686-pc-linux-gnu/template
+++ b/srcpkgs/cross-i686-pc-linux-gnu/template
@@ -11,7 +11,7 @@ _sysroot="/usr/${_triplet}"
 
 pkgname=cross-${_triplet}
 version=0.32
-revision=1
+revision=2
 short_desc="GNU Cross toolchain for the ${_triplet} target (binutils/gcc/glibc)"
 maintainer="Orphaned <orphan@voidlinux.org>"
 homepage="https://www.voidlinux.org/"
@@ -343,7 +343,7 @@ do_install() {
 	# Remove unnecessary stuff
 	rm -f ${DESTDIR}/usr/lib*/libiberty.a
 	rm -rf ${DESTDIR}/usr/share
-	rm -rf ${DESTDIR}/${_sysroot}/{sbin,lib,etc,var}
+	rm -rf ${DESTDIR}/${_sysroot}/{sbin,etc,var}
 	rm -rf ${DESTDIR}/${_sysroot}/usr/{sbin,share,libexec}
 	rm -rf ${DESTDIR}/${_sysroot}/usr/lib/gconv
 	rm -f ${DESTDIR}/${_sysroot}/libexec

From e76c5b2935216c2f18b5a5d3bf41051b57820302 Mon Sep 17 00:00:00 2001
From: Doan Tran Cong Danh <congdanhqx@gmail.com>
Date: Wed, 11 Sep 2019 18:14:31 +0700
Subject: [PATCH 2/2] cross-i686-linux-musl-libc: keep sysroot /lib symlink

firefox-esr 68.1.0 complains:

> 0:06.67 DEBUG: | /usr/lib/gcc/i686-pc-linux-gnu/9.2.0/../../../../i686-pc-linux-gnu/bin/ld: cannot find /lib/libc.so.6 inside /usr/i686-pc-linux-gnu
> 0:06.67 DEBUG: | /usr/lib/gcc/i686-pc-linux-gnu/9.2.0/../../../../i686-pc-linux-gnu/bin/ld: cannot find /lib/ld-linux.so.2 inside /usr/i686-pc-linux-gnu
---
 srcpkgs/cross-i686-linux-musl/template | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/srcpkgs/cross-i686-linux-musl/template b/srcpkgs/cross-i686-linux-musl/template
index 25d8042180a..9be855eaa70 100644
--- a/srcpkgs/cross-i686-linux-musl/template
+++ b/srcpkgs/cross-i686-linux-musl/template
@@ -12,7 +12,7 @@ _archflags="-march=i686"
 
 pkgname=cross-${_triplet}
 version=0.32
-revision=1
+revision=2
 short_desc="Cross toolchain for i686 target (musl)"
 maintainer="Orphaned <orphan@voidlinux.org>"
 homepage="https://www.voidlinux.org/"
@@ -296,11 +296,10 @@ do_install() {
 	# Remove unnecessary stuff
 	rm -f ${DESTDIR}/usr/lib*/libiberty.a
 	rm -rf ${DESTDIR}/usr/share
-	rm -rf ${DESTDIR}/${_sysroot}/{etc,var}
+	rm -rf ${DESTDIR}/${_sysroot}/{sbin,etc,var}
 	rm -rf ${DESTDIR}/${_sysroot}/usr/{sbin,share,libexec}
 	rm -f ${DESTDIR}/${_sysroot}/libexec
 	rm -f ${DESTDIR}/${_sysroot}/lib/*.py
-	rm -f ${DESTDIR}/${_sysroot}/{sbin,lib}
 }
 
 cross-i686-linux-musl-libc_package() {

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PR PATCH] [Updated] cross-i686 compiler: keep sysroot /lib symlink
  2019-09-11 11:30 [PR PATCH] cross-i686 compiler: keep sysroot /lib symlink voidlinux-github
@ 2019-09-11 11:31 ` voidlinux-github
  2019-09-11 11:31 ` voidlinux-github
                   ` (7 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: voidlinux-github @ 2019-09-11 11:31 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 876 bytes --]

There is an updated pull request by zdtcd against master on the void-packages repository

https://github.com/zdtcd/void-packages cross-lib
https://github.com/void-linux/void-packages/pull/14401

cross-i686 compiler: keep sysroot /lib symlink
When packaging Firefox ESR 68.1.0, and cross compile i686 from x86_64,
I received this complains:
> 0:06.67 DEBUG: | /usr/lib/gcc/i686-pc-linux-gnu/9.2.0/../../../../i686-pc-linux-gnu/bin/ld: cannot find /lib/libc.so.6 inside /usr/i686-pc-linux-gnu
> 0:06.67 DEBUG: | /usr/lib/gcc/i686-pc-linux-gnu/9.2.0/../../../../i686-pc-linux-gnu/bin/ld: cannot find /lib/ld-linux.so.2 inside /usr/i686-pc-linux-gnu

I didn't run into this complain when packaging aarch64 from x86_64,
I have a different problem when packaging ppc64le from x86_64


A patch file from https://github.com/void-linux/void-packages/pull/14401.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-cross-lib-14401.patch --]
[-- Type: text/x-diff, Size: 3165 bytes --]

From e42c9b63cafd31781a7876057cea285918b42388 Mon Sep 17 00:00:00 2001
From: Doan Tran Cong Danh <congdanhqx@gmail.com>
Date: Wed, 11 Sep 2019 18:14:31 +0700
Subject: [PATCH 1/2] cross-i686-pc-linux-gnu-libc: keep sysroot /lib symlink

firefox-esr 68.1.0 complains:

> 0:06.67 DEBUG: | /usr/lib/gcc/i686-pc-linux-gnu/9.2.0/../../../../i686-pc-linux-gnu/bin/ld: cannot find /lib/libc.so.6 inside /usr/i686-pc-linux-gnu
> 0:06.67 DEBUG: | /usr/lib/gcc/i686-pc-linux-gnu/9.2.0/../../../../i686-pc-linux-gnu/bin/ld: cannot find /lib/ld-linux.so.2 inside /usr/i686-pc-linux-gnu
---
 srcpkgs/cross-i686-pc-linux-gnu/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/cross-i686-pc-linux-gnu/template b/srcpkgs/cross-i686-pc-linux-gnu/template
index c5b0e414cae..31069653b4c 100644
--- a/srcpkgs/cross-i686-pc-linux-gnu/template
+++ b/srcpkgs/cross-i686-pc-linux-gnu/template
@@ -11,7 +11,7 @@ _sysroot="/usr/${_triplet}"
 
 pkgname=cross-${_triplet}
 version=0.32
-revision=1
+revision=2
 short_desc="GNU Cross toolchain for the ${_triplet} target (binutils/gcc/glibc)"
 maintainer="Orphaned <orphan@voidlinux.org>"
 homepage="https://www.voidlinux.org/"
@@ -343,7 +343,7 @@ do_install() {
 	# Remove unnecessary stuff
 	rm -f ${DESTDIR}/usr/lib*/libiberty.a
 	rm -rf ${DESTDIR}/usr/share
-	rm -rf ${DESTDIR}/${_sysroot}/{sbin,lib,etc,var}
+	rm -rf ${DESTDIR}/${_sysroot}/{sbin,etc,var}
 	rm -rf ${DESTDIR}/${_sysroot}/usr/{sbin,share,libexec}
 	rm -rf ${DESTDIR}/${_sysroot}/usr/lib/gconv
 	rm -f ${DESTDIR}/${_sysroot}/libexec

From 3c1d48539c3ba5579fe9da21584795f5b9fd94fd Mon Sep 17 00:00:00 2001
From: Doan Tran Cong Danh <congdanhqx@gmail.com>
Date: Wed, 11 Sep 2019 18:14:31 +0700
Subject: [PATCH 2/2] cross-i686-linux-musl-libc: keep sysroot /lib symlink

firefox-esr 68.1.0 complains:

> 0:06.67 DEBUG: | /usr/lib/gcc/i686-pc-linux-gnu/9.2.0/../../../../i686-pc-linux-gnu/bin/ld: cannot find /lib/libc.so.6 inside /usr/i686-pc-linux-gnu
> 0:06.67 DEBUG: | /usr/lib/gcc/i686-pc-linux-gnu/9.2.0/../../../../i686-pc-linux-gnu/bin/ld: cannot find /lib/ld-linux.so.2 inside /usr/i686-pc-linux-gnu

[skip ci]
---
 srcpkgs/cross-i686-linux-musl/template | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/srcpkgs/cross-i686-linux-musl/template b/srcpkgs/cross-i686-linux-musl/template
index 25d8042180a..9be855eaa70 100644
--- a/srcpkgs/cross-i686-linux-musl/template
+++ b/srcpkgs/cross-i686-linux-musl/template
@@ -12,7 +12,7 @@ _archflags="-march=i686"
 
 pkgname=cross-${_triplet}
 version=0.32
-revision=1
+revision=2
 short_desc="Cross toolchain for i686 target (musl)"
 maintainer="Orphaned <orphan@voidlinux.org>"
 homepage="https://www.voidlinux.org/"
@@ -296,11 +296,10 @@ do_install() {
 	# Remove unnecessary stuff
 	rm -f ${DESTDIR}/usr/lib*/libiberty.a
 	rm -rf ${DESTDIR}/usr/share
-	rm -rf ${DESTDIR}/${_sysroot}/{etc,var}
+	rm -rf ${DESTDIR}/${_sysroot}/{sbin,etc,var}
 	rm -rf ${DESTDIR}/${_sysroot}/usr/{sbin,share,libexec}
 	rm -f ${DESTDIR}/${_sysroot}/libexec
 	rm -f ${DESTDIR}/${_sysroot}/lib/*.py
-	rm -f ${DESTDIR}/${_sysroot}/{sbin,lib}
 }
 
 cross-i686-linux-musl-libc_package() {

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PR PATCH] [Updated] cross-i686 compiler: keep sysroot /lib symlink
  2019-09-11 11:30 [PR PATCH] cross-i686 compiler: keep sysroot /lib symlink voidlinux-github
  2019-09-11 11:31 ` [PR PATCH] [Updated] " voidlinux-github
@ 2019-09-11 11:31 ` voidlinux-github
  2019-09-11 19:51 ` voidlinux-github
                   ` (6 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: voidlinux-github @ 2019-09-11 11:31 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 876 bytes --]

There is an updated pull request by zdtcd against master on the void-packages repository

https://github.com/zdtcd/void-packages cross-lib
https://github.com/void-linux/void-packages/pull/14401

cross-i686 compiler: keep sysroot /lib symlink
When packaging Firefox ESR 68.1.0, and cross compile i686 from x86_64,
I received this complains:
> 0:06.67 DEBUG: | /usr/lib/gcc/i686-pc-linux-gnu/9.2.0/../../../../i686-pc-linux-gnu/bin/ld: cannot find /lib/libc.so.6 inside /usr/i686-pc-linux-gnu
> 0:06.67 DEBUG: | /usr/lib/gcc/i686-pc-linux-gnu/9.2.0/../../../../i686-pc-linux-gnu/bin/ld: cannot find /lib/ld-linux.so.2 inside /usr/i686-pc-linux-gnu

I didn't run into this complain when packaging aarch64 from x86_64,
I have a different problem when packaging ppc64le from x86_64


A patch file from https://github.com/void-linux/void-packages/pull/14401.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-cross-lib-14401.patch --]
[-- Type: text/x-diff, Size: 3165 bytes --]

From e42c9b63cafd31781a7876057cea285918b42388 Mon Sep 17 00:00:00 2001
From: Doan Tran Cong Danh <congdanhqx@gmail.com>
Date: Wed, 11 Sep 2019 18:14:31 +0700
Subject: [PATCH 1/2] cross-i686-pc-linux-gnu-libc: keep sysroot /lib symlink

firefox-esr 68.1.0 complains:

> 0:06.67 DEBUG: | /usr/lib/gcc/i686-pc-linux-gnu/9.2.0/../../../../i686-pc-linux-gnu/bin/ld: cannot find /lib/libc.so.6 inside /usr/i686-pc-linux-gnu
> 0:06.67 DEBUG: | /usr/lib/gcc/i686-pc-linux-gnu/9.2.0/../../../../i686-pc-linux-gnu/bin/ld: cannot find /lib/ld-linux.so.2 inside /usr/i686-pc-linux-gnu
---
 srcpkgs/cross-i686-pc-linux-gnu/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/cross-i686-pc-linux-gnu/template b/srcpkgs/cross-i686-pc-linux-gnu/template
index c5b0e414cae..31069653b4c 100644
--- a/srcpkgs/cross-i686-pc-linux-gnu/template
+++ b/srcpkgs/cross-i686-pc-linux-gnu/template
@@ -11,7 +11,7 @@ _sysroot="/usr/${_triplet}"
 
 pkgname=cross-${_triplet}
 version=0.32
-revision=1
+revision=2
 short_desc="GNU Cross toolchain for the ${_triplet} target (binutils/gcc/glibc)"
 maintainer="Orphaned <orphan@voidlinux.org>"
 homepage="https://www.voidlinux.org/"
@@ -343,7 +343,7 @@ do_install() {
 	# Remove unnecessary stuff
 	rm -f ${DESTDIR}/usr/lib*/libiberty.a
 	rm -rf ${DESTDIR}/usr/share
-	rm -rf ${DESTDIR}/${_sysroot}/{sbin,lib,etc,var}
+	rm -rf ${DESTDIR}/${_sysroot}/{sbin,etc,var}
 	rm -rf ${DESTDIR}/${_sysroot}/usr/{sbin,share,libexec}
 	rm -rf ${DESTDIR}/${_sysroot}/usr/lib/gconv
 	rm -f ${DESTDIR}/${_sysroot}/libexec

From 3c1d48539c3ba5579fe9da21584795f5b9fd94fd Mon Sep 17 00:00:00 2001
From: Doan Tran Cong Danh <congdanhqx@gmail.com>
Date: Wed, 11 Sep 2019 18:14:31 +0700
Subject: [PATCH 2/2] cross-i686-linux-musl-libc: keep sysroot /lib symlink

firefox-esr 68.1.0 complains:

> 0:06.67 DEBUG: | /usr/lib/gcc/i686-pc-linux-gnu/9.2.0/../../../../i686-pc-linux-gnu/bin/ld: cannot find /lib/libc.so.6 inside /usr/i686-pc-linux-gnu
> 0:06.67 DEBUG: | /usr/lib/gcc/i686-pc-linux-gnu/9.2.0/../../../../i686-pc-linux-gnu/bin/ld: cannot find /lib/ld-linux.so.2 inside /usr/i686-pc-linux-gnu

[skip ci]
---
 srcpkgs/cross-i686-linux-musl/template | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/srcpkgs/cross-i686-linux-musl/template b/srcpkgs/cross-i686-linux-musl/template
index 25d8042180a..9be855eaa70 100644
--- a/srcpkgs/cross-i686-linux-musl/template
+++ b/srcpkgs/cross-i686-linux-musl/template
@@ -12,7 +12,7 @@ _archflags="-march=i686"
 
 pkgname=cross-${_triplet}
 version=0.32
-revision=1
+revision=2
 short_desc="Cross toolchain for i686 target (musl)"
 maintainer="Orphaned <orphan@voidlinux.org>"
 homepage="https://www.voidlinux.org/"
@@ -296,11 +296,10 @@ do_install() {
 	# Remove unnecessary stuff
 	rm -f ${DESTDIR}/usr/lib*/libiberty.a
 	rm -rf ${DESTDIR}/usr/share
-	rm -rf ${DESTDIR}/${_sysroot}/{etc,var}
+	rm -rf ${DESTDIR}/${_sysroot}/{sbin,etc,var}
 	rm -rf ${DESTDIR}/${_sysroot}/usr/{sbin,share,libexec}
 	rm -f ${DESTDIR}/${_sysroot}/libexec
 	rm -f ${DESTDIR}/${_sysroot}/lib/*.py
-	rm -f ${DESTDIR}/${_sysroot}/{sbin,lib}
 }
 
 cross-i686-linux-musl-libc_package() {

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: cross-i686 compiler: keep sysroot /lib symlink
  2019-09-11 11:30 [PR PATCH] cross-i686 compiler: keep sysroot /lib symlink voidlinux-github
  2019-09-11 11:31 ` [PR PATCH] [Updated] " voidlinux-github
  2019-09-11 11:31 ` voidlinux-github
@ 2019-09-11 19:51 ` voidlinux-github
  2019-09-11 23:36 ` voidlinux-github
                   ` (5 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: voidlinux-github @ 2019-09-11 19:51 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 433 bytes --]

New comment by Piraty on void-packages repository

https://github.com/void-linux/void-packages/pull/14401#issuecomment-530538632

Comment:
(Unrelated to you actual PR)
You don't need to cross-compile from x86_64* to i686 and are better off using a masterdir with the desired arch instead:
```
./xbps-src -m masterdir-i686 binary-bootstrap i686
./xbps-src -m masterdir-i686 pkg foo
```
That's probably why nobody noticed before

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: cross-i686 compiler: keep sysroot /lib symlink
  2019-09-11 11:30 [PR PATCH] cross-i686 compiler: keep sysroot /lib symlink voidlinux-github
                   ` (2 preceding siblings ...)
  2019-09-11 19:51 ` voidlinux-github
@ 2019-09-11 23:36 ` voidlinux-github
  2019-10-02  3:17 ` voidlinux-github
                   ` (4 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: voidlinux-github @ 2019-09-11 23:36 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 619 bytes --]

New comment by zdtcd on void-packages repository

https://github.com/void-linux/void-packages/pull/14401#issuecomment-530605561

Comment:
On September 11, 2019 7:51:08 PM UTC, Piraty <notifications@github.com> wrote:
>(Unrelated to you actual PR)
>You don't need to cross-compile from x86_64* to i686 and are better off
>using a masterdir with the desired arch instead:
>```
>./xbps-src -m masterdir-i686 binary-bootstrap i686
>./xbps-src -m masterdir-i686 pkg foo
>```
>That's probably why nobody noticed before

Well, I knew we can bootstrap i686 in x86_64.
I tested that build in my PR, see first comment.
-- 
Danh


^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: cross-i686 compiler: keep sysroot /lib symlink
  2019-09-11 11:30 [PR PATCH] cross-i686 compiler: keep sysroot /lib symlink voidlinux-github
                   ` (3 preceding siblings ...)
  2019-09-11 23:36 ` voidlinux-github
@ 2019-10-02  3:17 ` voidlinux-github
  2019-10-03 22:27 ` voidlinux-github
                   ` (3 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: voidlinux-github @ 2019-10-02  3:17 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 143 bytes --]

New comment by zdtcd on void-packages repository

https://github.com/void-linux/void-packages/pull/14401#issuecomment-537317761

Comment:
Ping

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: cross-i686 compiler: keep sysroot /lib symlink
  2019-09-11 11:30 [PR PATCH] cross-i686 compiler: keep sysroot /lib symlink voidlinux-github
                   ` (4 preceding siblings ...)
  2019-10-02  3:17 ` voidlinux-github
@ 2019-10-03 22:27 ` voidlinux-github
  2019-10-04  9:55 ` voidlinux-github
                   ` (2 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: voidlinux-github @ 2019-10-03 22:27 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 577 bytes --]

New comment by Piraty on void-packages repository

https://github.com/void-linux/void-packages/pull/14401#issuecomment-538153103

Comment:
I looked into it, but cannot reproduce so far. Crosscompiling various packages from an x86_64 masterdir to i686 didn't show anything unusual. firefox build ongoing though, so it might be a firefox issue alone
```
./xbps-src -m masterdir.pr14401 binary-bootstrap
./xbps-src -m masterdir.pr14401 -a i686 pkg foo
```
Can you please provide a command to show off the issue? Please use a fresh masterdir (`-m`) and a fresh hostdir (`-H`)

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: cross-i686 compiler: keep sysroot /lib symlink
  2019-09-11 11:30 [PR PATCH] cross-i686 compiler: keep sysroot /lib symlink voidlinux-github
                   ` (5 preceding siblings ...)
  2019-10-03 22:27 ` voidlinux-github
@ 2019-10-04  9:55 ` voidlinux-github
  2019-10-13  9:41 ` voidlinux-github
  2019-10-13 10:38 ` voidlinux-github
  8 siblings, 0 replies; 10+ messages in thread
From: voidlinux-github @ 2019-10-04  9:55 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 633 bytes --]

New comment by Piraty on void-packages repository

https://github.com/void-linux/void-packages/pull/14401#issuecomment-538153103

Comment:
I looked into it, but cannot reproduce so far. Crosscompiling various packages from an x86_64 masterdir to i686 didn't show anything unusual. ~firefox build ongoing though~ crossbuildung firefox to i686 fails, but for other reasons you posted.
Here's how to check
```
./xbps-src -m masterdir.pr14401 binary-bootstrap
./xbps-src -m masterdir.pr14401 -a i686 pkg foo
```
Can you please provide a command to show off the issue? Please use a fresh masterdir (`-m`) and a fresh hostdir (`-H`)

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: cross-i686 compiler: keep sysroot /lib symlink
  2019-09-11 11:30 [PR PATCH] cross-i686 compiler: keep sysroot /lib symlink voidlinux-github
                   ` (6 preceding siblings ...)
  2019-10-04  9:55 ` voidlinux-github
@ 2019-10-13  9:41 ` voidlinux-github
  2019-10-13 10:38 ` voidlinux-github
  8 siblings, 0 replies; 10+ messages in thread
From: voidlinux-github @ 2019-10-13  9:41 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 182 bytes --]

New comment by zdtcd on void-packages repository

https://github.com/void-linux/void-packages/pull/14401#issuecomment-541403177

Comment:
Weird, I can't reproduce the issue anymore.

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: cross-i686 compiler: keep sysroot /lib symlink
  2019-09-11 11:30 [PR PATCH] cross-i686 compiler: keep sysroot /lib symlink voidlinux-github
                   ` (7 preceding siblings ...)
  2019-10-13  9:41 ` voidlinux-github
@ 2019-10-13 10:38 ` voidlinux-github
  8 siblings, 0 replies; 10+ messages in thread
From: voidlinux-github @ 2019-10-13 10:38 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 377 bytes --]

New comment by Johnnynator on void-packages repository

https://github.com/void-linux/void-packages/pull/14401#issuecomment-541406880

Comment:
`xbps-src` regenerates this symlink if it is missing, we have a inconsistency in our cross compiler packages, some have it removed some not, So this issue only crops up outside of `xbps-src`, inside it is probably a result of #14476

^ permalink raw reply	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2019-10-13 10:38 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-09-11 11:30 [PR PATCH] cross-i686 compiler: keep sysroot /lib symlink voidlinux-github
2019-09-11 11:31 ` [PR PATCH] [Updated] " voidlinux-github
2019-09-11 11:31 ` voidlinux-github
2019-09-11 19:51 ` voidlinux-github
2019-09-11 23:36 ` voidlinux-github
2019-10-02  3:17 ` voidlinux-github
2019-10-03 22:27 ` voidlinux-github
2019-10-04  9:55 ` voidlinux-github
2019-10-13  9:41 ` voidlinux-github
2019-10-13 10:38 ` voidlinux-github

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).