Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/1] gcc/libmudflap: also unavailable for gcc 6.x
@ 2016-05-28 19:01 Bernd Kuhls
  2016-05-30 21:38 ` Arnout Vandecappelle
  2016-05-31 15:41 ` Peter Korsgaard
  0 siblings, 2 replies; 4+ messages in thread
From: Bernd Kuhls @ 2016-05-28 19:01 UTC (permalink / raw)
  To: buildroot

libmudflap was removed in gcc 4.9:
https://gcc.gnu.org/wiki/Mudflap_Pointer_Debugging

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
---
 package/gcc/Config.in.host | 1 +
 1 file changed, 1 insertion(+)

diff --git a/package/gcc/Config.in.host b/package/gcc/Config.in.host
index 8cf2d56..ee4d0eb 100644
--- a/package/gcc/Config.in.host
+++ b/package/gcc/Config.in.host
@@ -153,6 +153,7 @@ config BR2_GCC_ENABLE_LIBMUDFLAP
 	depends on !BR2_ARM_INSTRUCTIONS_THUMB && !BR2_powerpc_SPE
 	depends on !BR2_GCC_VERSION_4_9_X
 	depends on !BR2_GCC_VERSION_5_X
+	depends on !BR2_GCC_VERSION_6_X
 	help
 	  libmudflap is a gcc library used for the mudflap pointer
 	  debugging functionality. It is only needed if you intend to
-- 
2.8.1

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

* [Buildroot] [PATCH 1/1] gcc/libmudflap: also unavailable for gcc 6.x
  2016-05-28 19:01 [Buildroot] [PATCH 1/1] gcc/libmudflap: also unavailable for gcc 6.x Bernd Kuhls
@ 2016-05-30 21:38 ` Arnout Vandecappelle
  2016-05-31 15:42   ` Peter Korsgaard
  2016-05-31 15:41 ` Peter Korsgaard
  1 sibling, 1 reply; 4+ messages in thread
From: Arnout Vandecappelle @ 2016-05-30 21:38 UTC (permalink / raw)
  To: buildroot

On 05/28/16 21:01, Bernd Kuhls wrote:
> libmudflap was removed in gcc 4.9:
> https://gcc.gnu.org/wiki/Mudflap_Pointer_Debugging
> 
> Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
> ---
>  package/gcc/Config.in.host | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/package/gcc/Config.in.host b/package/gcc/Config.in.host
> index 8cf2d56..ee4d0eb 100644
> --- a/package/gcc/Config.in.host
> +++ b/package/gcc/Config.in.host
> @@ -153,6 +153,7 @@ config BR2_GCC_ENABLE_LIBMUDFLAP
>  	depends on !BR2_ARM_INSTRUCTIONS_THUMB && !BR2_powerpc_SPE
>  	depends on !BR2_GCC_VERSION_4_9_X
>  	depends on !BR2_GCC_VERSION_5_X
> +	depends on !BR2_GCC_VERSION_6_X

 Since 4.7 is deprecated and 4.8 will in a year or so, perhaps it's time to
replace this with

	depends on BR2_GCC_VERSION_4_7_X || BR2_GCC_VERSION_4_8_X

 Or even better

	depends on !BR2_TOOLCHAIN_GCC_AT_LEAST_4_9

 That said, this patch does the trick and we want this in 2016.05, so

Reviewed-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>


 Regards,
 Arnout

>  	help
>  	  libmudflap is a gcc library used for the mudflap pointer
>  	  debugging functionality. It is only needed if you intend to
> 


-- 
Arnout Vandecappelle                          arnout at mind be
Senior Embedded Software Architect            +32-16-286500
Essensium/Mind                                http://www.mind.be
G.Geenslaan 9, 3001 Leuven, Belgium           BE 872 984 063 RPR Leuven
LinkedIn profile: http://www.linkedin.com/in/arnoutvandecappelle
GPG fingerprint:  7493 020B C7E3 8618 8DEC 222C 82EB F404 F9AC 0DDF

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

* [Buildroot] [PATCH 1/1] gcc/libmudflap: also unavailable for gcc 6.x
  2016-05-28 19:01 [Buildroot] [PATCH 1/1] gcc/libmudflap: also unavailable for gcc 6.x Bernd Kuhls
  2016-05-30 21:38 ` Arnout Vandecappelle
@ 2016-05-31 15:41 ` Peter Korsgaard
  1 sibling, 0 replies; 4+ messages in thread
From: Peter Korsgaard @ 2016-05-31 15:41 UTC (permalink / raw)
  To: buildroot

>>>>> "Bernd" == Bernd Kuhls <bernd.kuhls@t-online.de> writes:

 > libmudflap was removed in gcc 4.9:
 > https://gcc.gnu.org/wiki/Mudflap_Pointer_Debugging

 > Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>

Committed, thanks.

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH 1/1] gcc/libmudflap: also unavailable for gcc 6.x
  2016-05-30 21:38 ` Arnout Vandecappelle
@ 2016-05-31 15:42   ` Peter Korsgaard
  0 siblings, 0 replies; 4+ messages in thread
From: Peter Korsgaard @ 2016-05-31 15:42 UTC (permalink / raw)
  To: buildroot

>>>>> "Arnout" == Arnout Vandecappelle <arnout@mind.be> writes:

Hi,

 >  Since 4.7 is deprecated and 4.8 will in a year or so, perhaps it's time to
 > replace this with

 > 	depends on BR2_GCC_VERSION_4_7_X || BR2_GCC_VERSION_4_8_X

 >  Or even better

 > 	depends on !BR2_TOOLCHAIN_GCC_AT_LEAST_4_9

 >  That said, this patch does the trick and we want this in 2016.05, so

Agreed, care to send a patch for next?

-- 
Bye, Peter Korsgaard

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

end of thread, other threads:[~2016-05-31 15:42 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-05-28 19:01 [Buildroot] [PATCH 1/1] gcc/libmudflap: also unavailable for gcc 6.x Bernd Kuhls
2016-05-30 21:38 ` Arnout Vandecappelle
2016-05-31 15:42   ` Peter Korsgaard
2016-05-31 15:41 ` Peter Korsgaard

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox