All the mail mirrored from lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/2] toolchain-external: codescape-mti-mips: needs shared library support
@ 2022-05-18  5:01 Baruch Siach via buildroot
  2022-05-18  5:01 ` [Buildroot] [PATCH 2/2] toolchain-external: codescape-img-mips: " Baruch Siach via buildroot
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Baruch Siach via buildroot @ 2022-05-18  5:01 UTC (permalink / raw
  To: buildroot

This is a glibc toolchain that does not support static linking.

Fixes:
http://autobuild.buildroot.net/results/8501bbeb1912e3923cba46b576b49f755c7c0072/

Signed-off-by: Baruch Siach <baruch@tkos.co.il>
---
 .../toolchain-external-codescape-mti-mips/Config.in              | 1 +
 1 file changed, 1 insertion(+)

diff --git a/toolchain/toolchain-external/toolchain-external-codescape-mti-mips/Config.in b/toolchain/toolchain-external/toolchain-external-codescape-mti-mips/Config.in
index c58c55119a7b..116d4a834d70 100644
--- a/toolchain/toolchain-external/toolchain-external-codescape-mti-mips/Config.in
+++ b/toolchain/toolchain-external/toolchain-external-codescape-mti-mips/Config.in
@@ -5,6 +5,7 @@ config BR2_TOOLCHAIN_EXTERNAL_CODESCAPE_MTI_MIPS
 	depends on BR2_HOSTARCH = "x86_64" || BR2_HOSTARCH = "x86"
 	depends on BR2_MIPS_CPU_MIPS32R2 || (BR2_MIPS_CPU_MIPS64R2 && !BR2_MIPS_SOFT_FLOAT) || \
 		BR2_MIPS_CPU_MIPS32R5 || (BR2_MIPS_CPU_MIPS64R5 && !BR2_MIPS_SOFT_FLOAT)
+	depends on !BR2_STATIC_LIBS
 	select BR2_TOOLCHAIN_EXTERNAL_GLIBC
 	select BR2_INSTALL_LIBSTDCPP
 	select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_7
-- 
2.35.1

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* [Buildroot] [PATCH 2/2] toolchain-external: codescape-img-mips: needs shared library support
  2022-05-18  5:01 [Buildroot] [PATCH 1/2] toolchain-external: codescape-mti-mips: needs shared library support Baruch Siach via buildroot
@ 2022-05-18  5:01 ` Baruch Siach via buildroot
  2022-06-01 16:13   ` Peter Korsgaard
  2022-05-18 19:20 ` [Buildroot] [PATCH 1/2] toolchain-external: codescape-mti-mips: " Arnout Vandecappelle
  2022-06-01 16:13 ` Peter Korsgaard
  2 siblings, 1 reply; 5+ messages in thread
From: Baruch Siach via buildroot @ 2022-05-18  5:01 UTC (permalink / raw
  To: buildroot

This is a glibc toolchain that does not support static linking.

Fixes:
http://autobuild.buildroot.net/results/4dcccda4e1600100c942a3f5793bd7a20165fff3/

Signed-off-by: Baruch Siach <baruch@tkos.co.il>
---
 .../toolchain-external-codescape-img-mips/Config.in              | 1 +
 1 file changed, 1 insertion(+)

diff --git a/toolchain/toolchain-external/toolchain-external-codescape-img-mips/Config.in b/toolchain/toolchain-external/toolchain-external-codescape-img-mips/Config.in
index 2341d0883256..8ea9508f9f89 100644
--- a/toolchain/toolchain-external/toolchain-external-codescape-img-mips/Config.in
+++ b/toolchain/toolchain-external/toolchain-external-codescape-img-mips/Config.in
@@ -4,6 +4,7 @@ config BR2_TOOLCHAIN_EXTERNAL_CODESCAPE_IMG_MIPS
 	depends on !BR2_ARCH_NEEDS_GCC_AT_LEAST_7
 	depends on BR2_HOSTARCH = "x86_64" || BR2_HOSTARCH = "x86"
 	depends on BR2_MIPS_CPU_MIPS32R6 || (BR2_MIPS_CPU_MIPS64R6 && !BR2_MIPS_SOFT_FLOAT)
+	depends on !BR2_STATIC_LIBS
 	select BR2_TOOLCHAIN_EXTERNAL_GLIBC
 	select BR2_INSTALL_LIBSTDCPP
 	select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_7
-- 
2.35.1

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH 1/2] toolchain-external: codescape-mti-mips: needs shared library support
  2022-05-18  5:01 [Buildroot] [PATCH 1/2] toolchain-external: codescape-mti-mips: needs shared library support Baruch Siach via buildroot
  2022-05-18  5:01 ` [Buildroot] [PATCH 2/2] toolchain-external: codescape-img-mips: " Baruch Siach via buildroot
@ 2022-05-18 19:20 ` Arnout Vandecappelle
  2022-06-01 16:13 ` Peter Korsgaard
  2 siblings, 0 replies; 5+ messages in thread
From: Arnout Vandecappelle @ 2022-05-18 19:20 UTC (permalink / raw
  To: Baruch Siach, buildroot



On 18/05/2022 07:01, Baruch Siach via buildroot wrote:
> This is a glibc toolchain that does not support static linking.
> 
> Fixes:
> http://autobuild.buildroot.net/results/8501bbeb1912e3923cba46b576b49f755c7c0072/
> 
> Signed-off-by: Baruch Siach <baruch@tkos.co.il>

  Applied both to master, thanks.

  Regards,
  Arnout

> ---
>   .../toolchain-external-codescape-mti-mips/Config.in              | 1 +
>   1 file changed, 1 insertion(+)
> 
> diff --git a/toolchain/toolchain-external/toolchain-external-codescape-mti-mips/Config.in b/toolchain/toolchain-external/toolchain-external-codescape-mti-mips/Config.in
> index c58c55119a7b..116d4a834d70 100644
> --- a/toolchain/toolchain-external/toolchain-external-codescape-mti-mips/Config.in
> +++ b/toolchain/toolchain-external/toolchain-external-codescape-mti-mips/Config.in
> @@ -5,6 +5,7 @@ config BR2_TOOLCHAIN_EXTERNAL_CODESCAPE_MTI_MIPS
>   	depends on BR2_HOSTARCH = "x86_64" || BR2_HOSTARCH = "x86"
>   	depends on BR2_MIPS_CPU_MIPS32R2 || (BR2_MIPS_CPU_MIPS64R2 && !BR2_MIPS_SOFT_FLOAT) || \
>   		BR2_MIPS_CPU_MIPS32R5 || (BR2_MIPS_CPU_MIPS64R5 && !BR2_MIPS_SOFT_FLOAT)
> +	depends on !BR2_STATIC_LIBS
>   	select BR2_TOOLCHAIN_EXTERNAL_GLIBC
>   	select BR2_INSTALL_LIBSTDCPP
>   	select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_7
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH 1/2] toolchain-external: codescape-mti-mips: needs shared library support
  2022-05-18  5:01 [Buildroot] [PATCH 1/2] toolchain-external: codescape-mti-mips: needs shared library support Baruch Siach via buildroot
  2022-05-18  5:01 ` [Buildroot] [PATCH 2/2] toolchain-external: codescape-img-mips: " Baruch Siach via buildroot
  2022-05-18 19:20 ` [Buildroot] [PATCH 1/2] toolchain-external: codescape-mti-mips: " Arnout Vandecappelle
@ 2022-06-01 16:13 ` Peter Korsgaard
  2 siblings, 0 replies; 5+ messages in thread
From: Peter Korsgaard @ 2022-06-01 16:13 UTC (permalink / raw
  To: Baruch Siach via buildroot; +Cc: buildroot

>>>>> "Baruch" == Baruch Siach via buildroot <buildroot@buildroot.org> writes:

 > This is a glibc toolchain that does not support static linking.
 > Fixes:
 > http://autobuild.buildroot.net/results/8501bbeb1912e3923cba46b576b49f755c7c0072/

 > Signed-off-by: Baruch Siach <baruch@tkos.co.il>

Committed to 2022.02.x, thanks.

-- 
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH 2/2] toolchain-external: codescape-img-mips: needs shared library support
  2022-05-18  5:01 ` [Buildroot] [PATCH 2/2] toolchain-external: codescape-img-mips: " Baruch Siach via buildroot
@ 2022-06-01 16:13   ` Peter Korsgaard
  0 siblings, 0 replies; 5+ messages in thread
From: Peter Korsgaard @ 2022-06-01 16:13 UTC (permalink / raw
  To: Baruch Siach via buildroot; +Cc: buildroot

>>>>> "Baruch" == Baruch Siach via buildroot <buildroot@buildroot.org> writes:

 > This is a glibc toolchain that does not support static linking.
 > Fixes:
 > http://autobuild.buildroot.net/results/4dcccda4e1600100c942a3f5793bd7a20165fff3/

 > Signed-off-by: Baruch Siach <baruch@tkos.co.il>

Committed to 2022.02.x, thanks.

> ---
 >  .../toolchain-external-codescape-img-mips/Config.in              | 1 +
 >  1 file changed, 1 insertion(+)

 > diff --git a/toolchain/toolchain-external/toolchain-external-codescape-img-mips/Config.in b/toolchain/toolchain-external/toolchain-external-codescape-img-mips/Config.in
 > index 2341d0883256..8ea9508f9f89 100644
 > --- a/toolchain/toolchain-external/toolchain-external-codescape-img-mips/Config.in
 > +++ b/toolchain/toolchain-external/toolchain-external-codescape-img-mips/Config.in
 > @@ -4,6 +4,7 @@ config BR2_TOOLCHAIN_EXTERNAL_CODESCAPE_IMG_MIPS
 >  	depends on !BR2_ARCH_NEEDS_GCC_AT_LEAST_7
 >  	depends on BR2_HOSTARCH = "x86_64" || BR2_HOSTARCH = "x86"
 >  	depends on BR2_MIPS_CPU_MIPS32R6 || (BR2_MIPS_CPU_MIPS64R6 && !BR2_MIPS_SOFT_FLOAT)
 > +	depends on !BR2_STATIC_LIBS
 >  	select BR2_TOOLCHAIN_EXTERNAL_GLIBC
 >  	select BR2_INSTALL_LIBSTDCPP
 >  	select BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_7
 > -- 

 > 2.35.1

 > _______________________________________________
 > buildroot mailing list
 > buildroot@buildroot.org
 > https://lists.buildroot.org/mailman/listinfo/buildroot


-- 
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

end of thread, other threads:[~2022-06-01 16:13 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-05-18  5:01 [Buildroot] [PATCH 1/2] toolchain-external: codescape-mti-mips: needs shared library support Baruch Siach via buildroot
2022-05-18  5:01 ` [Buildroot] [PATCH 2/2] toolchain-external: codescape-img-mips: " Baruch Siach via buildroot
2022-06-01 16:13   ` Peter Korsgaard
2022-05-18 19:20 ` [Buildroot] [PATCH 1/2] toolchain-external: codescape-mti-mips: " Arnout Vandecappelle
2022-06-01 16:13 ` Peter Korsgaard

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.