Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] binutils: enable targets supported by Void
@ 2023-11-25  2:51 Piraty
  2023-11-25  2:52 ` [PR PATCH] [Updated] " Piraty
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Piraty @ 2023-11-25  2:51 UTC (permalink / raw)
  To: ml

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

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

https://github.com/Piraty/void-packages binutils-more-targets
https://github.com/void-linux/void-packages/pull/47381

binutils: enable targets supported by Void
<!-- Uncomment relevant sections and delete options which are not applicable -->

#### Testing the changes
- I tested the changes in this PR: **YES**

ping @sgn @oreo639 @leahneukirchen 
<!--
#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**|**NO**
-->

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
<!--
#### Local build testing
- I built this PR locally for my native architecture, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - armv7l
  - armv6l-musl
-->


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

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-binutils-more-targets-47381.patch --]
[-- Type: text/x-diff, Size: 2079 bytes --]

From 33f4e70e5c6cd7c557f63f15af3e049995149f74 Mon Sep 17 00:00:00 2001
From: Piraty <mail@piraty.dev>
Date: Sat, 25 Nov 2023 03:40:59 +0100
Subject: [PATCH] binutils: enable targets supported by Void

---
 srcpkgs/binutils/template | 25 ++++++++++++++++++-------
 1 file changed, 18 insertions(+), 7 deletions(-)

diff --git a/srcpkgs/binutils/template b/srcpkgs/binutils/template
index 441e435539044..9d60084232f44 100644
--- a/srcpkgs/binutils/template
+++ b/srcpkgs/binutils/template
@@ -1,7 +1,7 @@
 # Template file for 'binutils'
 pkgname=binutils
 version=2.39
-revision=2
+revision=3
 bootstrap=yes
 hostmakedepends="pkgconf"
 makedepends="zlib-devel"
@@ -13,6 +13,10 @@ distfiles="${GNU_SITE}/binutils/binutils-${version}.tar.xz"
 checksum=645c25f563b8adc0a81dbd6a41cffbf4d37083a382e02d5d3df4f65c09516d00
 
 subpackages="binutils-doc"
+
+build_options="all_targets"
+desc_option_all_targets="Enable all supported targets"
+
 if [ "$CHROOT_READY" ]; then
 	hostmakedepends+=" flex perl texinfo"
 	makedepends+=" elfutils-devel"
@@ -47,22 +51,29 @@ do_configure() {
 
 	# gprofng currently only supports x86 and aarch64 glibc.
 	case "$XBPS_TARGET_MACHINE" in
-		x86_64|i386|aarch64) conf+=" --enable-gprofng" ;;
+		x86_64|i686|aarch64) conf+=" --enable-gprofng" ;;
 		*) conf+=" --disable-gprofng" ;;
 	esac
 
+	extra_targets=
 	case "$XBPS_TARGET_MACHINE" in
 		ppc*)
 			conf+=" --enable-secureplt"
 			;;
-		x86_64*)
-			conf+=" --enable-targets=x86_64-pep"
-			;;
-		i686*)
-			conf+=" --enable-targets=x86_64-linux-gnu,x86_64-pep"
+		x86_64*|i686*)
+			extra_targets=x86_64-pep
 			;;
 	esac
 
+	# target archs supported by Void
+	# borked: riscv64 (gold doesn't support it)
+	void_targets="aarch64 armv5tel armv6l armv7l i686 mips mipsel ppc ppcle ppc64 ppc64le x86_64"
+	conf+=" --enable-targets=$(echo "$void_targets $extra_targets" | sed -e 's/ /-linux-gnu,/g')"
+
+	if [ "$build_option_all_targets" ]; then
+		conf+=" --enable-targets=all"
+	fi
+
 	# enable multilib on x86_64 glibc
 	if [ "$XBPS_TARGET_MACHINE" = "x86_64" ]; then
 		conf+=" --enable-multilib"

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

* Re: [PR PATCH] [Updated] binutils: enable targets supported by Void
  2023-11-25  2:51 [PR PATCH] binutils: enable targets supported by Void Piraty
@ 2023-11-25  2:52 ` Piraty
  2023-11-25  2:55 ` Piraty
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: Piraty @ 2023-11-25  2:52 UTC (permalink / raw)
  To: ml

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

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

https://github.com/Piraty/void-packages binutils-more-targets
https://github.com/void-linux/void-packages/pull/47381

binutils: enable targets supported by Void
<!-- Uncomment relevant sections and delete options which are not applicable -->

#### Testing the changes
- I tested the changes in this PR: **YES**

ping @sgn @oreo639 @leahneukirchen 
<!--
#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**|**NO**
-->

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
<!--
#### Local build testing
- I built this PR locally for my native architecture, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - armv7l
  - armv6l-musl
-->


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

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-binutils-more-targets-47381.patch --]
[-- Type: text/x-diff, Size: 2129 bytes --]

From cbdaf942793600d89a2c173aadbc1b7c46176100 Mon Sep 17 00:00:00 2001
From: Piraty <mail@piraty.dev>
Date: Sat, 25 Nov 2023 03:40:59 +0100
Subject: [PATCH] binutils: enable targets supported by Void

---
 srcpkgs/binutils/template | 25 ++++++++++++++++++-------
 1 file changed, 18 insertions(+), 7 deletions(-)

diff --git a/srcpkgs/binutils/template b/srcpkgs/binutils/template
index 441e435539044..8aa1facb1df15 100644
--- a/srcpkgs/binutils/template
+++ b/srcpkgs/binutils/template
@@ -1,7 +1,7 @@
 # Template file for 'binutils'
 pkgname=binutils
 version=2.39
-revision=2
+revision=3
 bootstrap=yes
 hostmakedepends="pkgconf"
 makedepends="zlib-devel"
@@ -12,7 +12,11 @@ homepage="http://www.gnu.org/software/binutils/"
 distfiles="${GNU_SITE}/binutils/binutils-${version}.tar.xz"
 checksum=645c25f563b8adc0a81dbd6a41cffbf4d37083a382e02d5d3df4f65c09516d00
 
+build_options="all_targets"
+desc_option_all_targets="Enable all supported targets"
+
 subpackages="binutils-doc"
+
 if [ "$CHROOT_READY" ]; then
 	hostmakedepends+=" flex perl texinfo"
 	makedepends+=" elfutils-devel"
@@ -47,22 +51,29 @@ do_configure() {
 
 	# gprofng currently only supports x86 and aarch64 glibc.
 	case "$XBPS_TARGET_MACHINE" in
-		x86_64|i386|aarch64) conf+=" --enable-gprofng" ;;
+		x86_64|i686|aarch64) conf+=" --enable-gprofng" ;;
 		*) conf+=" --disable-gprofng" ;;
 	esac
 
+	extra_targets=
 	case "$XBPS_TARGET_MACHINE" in
 		ppc*)
 			conf+=" --enable-secureplt"
 			;;
-		x86_64*)
-			conf+=" --enable-targets=x86_64-pep"
-			;;
-		i686*)
-			conf+=" --enable-targets=x86_64-linux-gnu,x86_64-pep"
+		x86_64*|i686*)
+			extra_targets=x86_64-pep
 			;;
 	esac
 
+	# target archs supported by Void
+	# borked: riscv64 (gold doesn't support it)
+	void_targets="aarch64 armv5tel armv6l armv7l i686 mips mipsel ppc ppcle ppc64 ppc64le x86_64"
+	conf+=" --enable-targets=$(echo "$void_targets $extra_targets" | sed -e 's/ /-linux-gnu,/g')"
+
+	if [ "$build_option_all_targets" ]; then
+		conf+=" --enable-targets=all"
+	fi
+
 	# enable multilib on x86_64 glibc
 	if [ "$XBPS_TARGET_MACHINE" = "x86_64" ]; then
 		conf+=" --enable-multilib"

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

* Re: [PR PATCH] [Updated] binutils: enable targets supported by Void
  2023-11-25  2:51 [PR PATCH] binutils: enable targets supported by Void Piraty
  2023-11-25  2:52 ` [PR PATCH] [Updated] " Piraty
@ 2023-11-25  2:55 ` Piraty
  2023-12-02  2:24 ` Piraty
  2023-12-08 17:36 ` [PR PATCH] [Merged]: " Piraty
  3 siblings, 0 replies; 5+ messages in thread
From: Piraty @ 2023-11-25  2:55 UTC (permalink / raw)
  To: ml

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

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

https://github.com/Piraty/void-packages binutils-more-targets
https://github.com/void-linux/void-packages/pull/47381

binutils: enable targets supported by Void
<!-- Uncomment relevant sections and delete options which are not applicable -->

#### Testing the changes
- I tested the changes in this PR: **YES**

ping @sgn @oreo639 @leahneukirchen 
<!--
#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**|**NO**
-->

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
<!--
#### Local build testing
- I built this PR locally for my native architecture, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - armv7l
  - armv6l-musl
-->


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

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-binutils-more-targets-47381.patch --]
[-- Type: text/x-diff, Size: 2113 bytes --]

From eed57c22e155ca7b9a089dadd6eed2376ffde6ca Mon Sep 17 00:00:00 2001
From: Piraty <mail@piraty.dev>
Date: Sat, 25 Nov 2023 03:40:59 +0100
Subject: [PATCH] binutils: enable targets supported by Void

---
 srcpkgs/binutils/template | 24 +++++++++++++++++-------
 1 file changed, 17 insertions(+), 7 deletions(-)

diff --git a/srcpkgs/binutils/template b/srcpkgs/binutils/template
index 441e435539044..91363fa34bb4a 100644
--- a/srcpkgs/binutils/template
+++ b/srcpkgs/binutils/template
@@ -1,7 +1,7 @@
 # Template file for 'binutils'
 pkgname=binutils
 version=2.39
-revision=2
+revision=3
 bootstrap=yes
 hostmakedepends="pkgconf"
 makedepends="zlib-devel"
@@ -12,7 +12,11 @@ homepage="http://www.gnu.org/software/binutils/"
 distfiles="${GNU_SITE}/binutils/binutils-${version}.tar.xz"
 checksum=645c25f563b8adc0a81dbd6a41cffbf4d37083a382e02d5d3df4f65c09516d00
 
+build_options="all_targets"
+desc_option_all_targets="Enable all supported targets"
+
 subpackages="binutils-doc"
+
 if [ "$CHROOT_READY" ]; then
 	hostmakedepends+=" flex perl texinfo"
 	makedepends+=" elfutils-devel"
@@ -47,7 +51,7 @@ do_configure() {
 
 	# gprofng currently only supports x86 and aarch64 glibc.
 	case "$XBPS_TARGET_MACHINE" in
-		x86_64|i386|aarch64) conf+=" --enable-gprofng" ;;
+		x86_64|i686|aarch64) conf+=" --enable-gprofng" ;;
 		*) conf+=" --disable-gprofng" ;;
 	esac
 
@@ -55,14 +59,20 @@ do_configure() {
 		ppc*)
 			conf+=" --enable-secureplt"
 			;;
-		x86_64*)
-			conf+=" --enable-targets=x86_64-pep"
-			;;
-		i686*)
-			conf+=" --enable-targets=x86_64-linux-gnu,x86_64-pep"
+		x86_64*|i686*)
+			extra_targets=x86_64-pep
 			;;
 	esac
 
+	# target archs supported by Void
+	# borked: riscv64 (gold doesn't support it)
+	void_targets="aarch64 armv5tel armv6l armv7l i686 mips mipsel ppc ppcle ppc64 ppc64le x86_64"
+	conf+=" --enable-targets=$(echo "$void_targets $extra_targets" | sed -e 's/ /-linux-gnu,/g')"
+
+	if [ "$build_option_all_targets" ]; then
+		conf+=" --enable-targets=all"
+	fi
+
 	# enable multilib on x86_64 glibc
 	if [ "$XBPS_TARGET_MACHINE" = "x86_64" ]; then
 		conf+=" --enable-multilib"

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

* Re: [PR PATCH] [Updated] binutils: enable targets supported by Void
  2023-11-25  2:51 [PR PATCH] binutils: enable targets supported by Void Piraty
  2023-11-25  2:52 ` [PR PATCH] [Updated] " Piraty
  2023-11-25  2:55 ` Piraty
@ 2023-12-02  2:24 ` Piraty
  2023-12-08 17:36 ` [PR PATCH] [Merged]: " Piraty
  3 siblings, 0 replies; 5+ messages in thread
From: Piraty @ 2023-12-02  2:24 UTC (permalink / raw)
  To: ml

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

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

https://github.com/Piraty/void-packages binutils-more-targets
https://github.com/void-linux/void-packages/pull/47381

binutils: enable targets supported by Void
<!-- Uncomment relevant sections and delete options which are not applicable -->

#### Testing the changes
- I tested the changes in this PR: **YES**

ping @sgn @oreo639 @leahneukirchen 
<!--
#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**|**NO**
-->

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
<!--
#### Local build testing
- I built this PR locally for my native architecture, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - armv7l
  - armv6l-musl
-->


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

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-binutils-more-targets-47381.patch --]
[-- Type: text/x-diff, Size: 2123 bytes --]

From cae91d46fc2bfa369c947d0404a8db248cf7a8ca Mon Sep 17 00:00:00 2001
From: Piraty <mail@piraty.dev>
Date: Sat, 25 Nov 2023 03:40:59 +0100
Subject: [PATCH] binutils: enable targets supported by Void

---
 srcpkgs/binutils/template | 24 +++++++++++++++++-------
 1 file changed, 17 insertions(+), 7 deletions(-)

diff --git a/srcpkgs/binutils/template b/srcpkgs/binutils/template
index 441e435539044..36b71c2b5e92c 100644
--- a/srcpkgs/binutils/template
+++ b/srcpkgs/binutils/template
@@ -1,7 +1,7 @@
 # Template file for 'binutils'
 pkgname=binutils
 version=2.39
-revision=2
+revision=3
 bootstrap=yes
 hostmakedepends="pkgconf"
 makedepends="zlib-devel"
@@ -12,7 +12,11 @@ homepage="http://www.gnu.org/software/binutils/"
 distfiles="${GNU_SITE}/binutils/binutils-${version}.tar.xz"
 checksum=645c25f563b8adc0a81dbd6a41cffbf4d37083a382e02d5d3df4f65c09516d00
 
+build_options="all_targets"
+desc_option_all_targets="Enable all supported targets"
+
 subpackages="binutils-doc"
+
 if [ "$CHROOT_READY" ]; then
 	hostmakedepends+=" flex perl texinfo"
 	makedepends+=" elfutils-devel"
@@ -47,7 +51,7 @@ do_configure() {
 
 	# gprofng currently only supports x86 and aarch64 glibc.
 	case "$XBPS_TARGET_MACHINE" in
-		x86_64|i386|aarch64) conf+=" --enable-gprofng" ;;
+		x86_64|i686|aarch64) conf+=" --enable-gprofng" ;;
 		*) conf+=" --disable-gprofng" ;;
 	esac
 
@@ -55,14 +59,20 @@ do_configure() {
 		ppc*)
 			conf+=" --enable-secureplt"
 			;;
-		x86_64*)
-			conf+=" --enable-targets=x86_64-pep"
-			;;
-		i686*)
-			conf+=" --enable-targets=x86_64-linux-gnu,x86_64-pep"
+		x86_64*|i686*)
+			extra_targets=x86_64-pep
 			;;
 	esac
 
+	# target archs supported by Void
+	# borked: riscv64 (gold doesn't support it)
+	void_targets="aarch64,armv5tel,armv6l,armv7l,i686,mips,mipsel,ppc,ppcle,ppc64,ppc64le,x86_64"
+	conf+=" --enable-targets=$(echo "$void_targets" | sed -E -e 's/(,|$)/-linux-gnu\1/g'),${extra_targets}"
+
+	if [ "$build_option_all_targets" ]; then
+		conf+=" --enable-targets=all"
+	fi
+
 	# enable multilib on x86_64 glibc
 	if [ "$XBPS_TARGET_MACHINE" = "x86_64" ]; then
 		conf+=" --enable-multilib"

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

* Re: [PR PATCH] [Merged]: binutils: enable targets supported by Void
  2023-11-25  2:51 [PR PATCH] binutils: enable targets supported by Void Piraty
                   ` (2 preceding siblings ...)
  2023-12-02  2:24 ` Piraty
@ 2023-12-08 17:36 ` Piraty
  3 siblings, 0 replies; 5+ messages in thread
From: Piraty @ 2023-12-08 17:36 UTC (permalink / raw)
  To: ml

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

There's a merged pull request on the void-packages repository

binutils: enable targets supported by Void
https://github.com/void-linux/void-packages/pull/47381

Description:
<!-- Uncomment relevant sections and delete options which are not applicable -->

#### Testing the changes
- I tested the changes in this PR: **YES**

ping @sgn @oreo639 @leahneukirchen 
<!--
#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**|**NO**
-->

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
<!--
#### Local build testing
- I built this PR locally for my native architecture, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - armv7l
  - armv6l-musl
-->


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

end of thread, other threads:[~2023-12-08 17:36 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-11-25  2:51 [PR PATCH] binutils: enable targets supported by Void Piraty
2023-11-25  2:52 ` [PR PATCH] [Updated] " Piraty
2023-11-25  2:55 ` Piraty
2023-12-02  2:24 ` Piraty
2023-12-08 17:36 ` [PR PATCH] [Merged]: " Piraty

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).