Re: [patch] ARM FreeBSD fix bootstrap

2016-01-07 Thread Andreas Tobler
On 06.01.16 11:39, Richard Earnshaw (lists) wrote: On 05/01/16 21:03, Andreas Tobler wrote: On 05.01.16 11:32, Richard Earnshaw (lists) wrote: On 23/12/15 19:28, Andreas Tobler wrote: 2015-12-23 Andreas Tobler * config/arm/freebsd.h: Rename SUBTARGET_OVERRIDE_OPTIONS to SUBTA

Re: [patch] ARM FreeBSD fix bootstrap

2016-01-06 Thread Richard Earnshaw (lists)
On 05/01/16 21:03, Andreas Tobler wrote: > On 05.01.16 11:32, Richard Earnshaw (lists) wrote: >> On 23/12/15 19:28, Andreas Tobler wrote: > >>> 2015-12-23 Andreas Tobler >>> >>> * config/arm/freebsd.h: Rename SUBTARGET_OVERRIDE_OPTIONS to >>> SUBTARGET_OVERRIDE_INTERNAL_OPTIONS. Adjus

Re: [patch] ARM FreeBSD fix bootstrap

2016-01-05 Thread Andreas Tobler
On 05.01.16 11:32, Richard Earnshaw (lists) wrote: On 23/12/15 19:28, Andreas Tobler wrote: 2015-12-23 Andreas Tobler * config/arm/freebsd.h: Rename SUBTARGET_OVERRIDE_OPTIONS to SUBTARGET_OVERRIDE_INTERNAL_OPTIONS. Adjust to check unaligned_access on the gcc_options set.

Re: [patch] ARM FreeBSD fix bootstrap

2016-01-05 Thread Nathan Sidwell
On 01/04/16 16:45, Andreas Tobler wrote: Ping :) I noticed this morning that VxWorks might be affected. To be on the safe side I'd like to propose the attached version since it makes clear where the override belongs to and I don't think hijacking SUBTARGET_OVERRIDE_OPTIONS is a good idea here.

Re: [patch] ARM FreeBSD fix bootstrap

2016-01-05 Thread Richard Earnshaw (lists)
On 23/12/15 19:28, Andreas Tobler wrote: > On 23.12.15 11:22, Richard Earnshaw (lists) wrote: >> On 22/12/15 19:53, Andreas Tobler wrote: >>> Hi all, >>> >>> the commit for PR68617 broke boostrap on armv6*-*-freebsd*. >>> >>> We still have unaligned_access = 0 on armv6 here on FreeBSD. >>> >>> The

Re: [patch] ARM FreeBSD fix bootstrap

2016-01-04 Thread Andreas Tobler
Ping :) TIA, Andreas On 23.12.15 20:28, Andreas Tobler wrote: On 23.12.15 11:22, Richard Earnshaw (lists) wrote: On 22/12/15 19:53, Andreas Tobler wrote: Hi all, the commit for PR68617 broke boostrap on armv6*-*-freebsd*. We still have unaligned_access = 0 on armv6 here on FreeBSD. The com

Re: [patch] ARM FreeBSD fix bootstrap

2015-12-23 Thread Andreas Tobler
On 23.12.15 11:22, Richard Earnshaw (lists) wrote: On 22/12/15 19:53, Andreas Tobler wrote: Hi all, the commit for PR68617 broke boostrap on armv6*-*-freebsd*. We still have unaligned_access = 0 on armv6 here on FreeBSD. The commit from the above PR overrides my SUBTARGET_OVERRIDE_OPTIONS I c

Re: [patch] ARM FreeBSD fix bootstrap

2015-12-23 Thread Andreas Tobler
Hi Kyrill, On 23.12.15 10:40, Kyrill Tkachov wrote: On 22/12/15 19:53, Andreas Tobler wrote: Hi all, the commit for PR68617 broke boostrap on armv6*-*-freebsd*. We still have unaligned_access = 0 on armv6 here on FreeBSD. The commit from the above PR overrides my SUBTARGET_OVERRIDE_OPTIONS

Re: [patch] ARM FreeBSD fix bootstrap

2015-12-23 Thread Nathan Sidwell
On 12/23/15 05:22, Richard Earnshaw (lists) wrote: 2015-12-22 Andreas Tobler * config/arm/freebsd.h (SUBTARGET_OVERRIDE_OPTIONS): Adjust to check unaligned_access on the gcc_options set. * config/arm/arm.c (arm_option_override): Move SUBTARGET_OVERRIDE_OPTIONS from here t

Re: [patch] ARM FreeBSD fix bootstrap

2015-12-23 Thread Richard Earnshaw (lists)
On 22/12/15 19:53, Andreas Tobler wrote: > Hi all, > > the commit for PR68617 broke boostrap on armv6*-*-freebsd*. > > We still have unaligned_access = 0 on armv6 here on FreeBSD. > > The commit from the above PR overrides my SUBTARGET_OVERRIDE_OPTIONS I > called in arm_option_override. And it s

Re: [patch] ARM FreeBSD fix bootstrap

2015-12-23 Thread Kyrill Tkachov
Hi Andreas, On 22/12/15 19:53, Andreas Tobler wrote: Hi all, the commit for PR68617 broke boostrap on armv6*-*-freebsd*. We still have unaligned_access = 0 on armv6 here on FreeBSD. The commit from the above PR overrides my SUBTARGET_OVERRIDE_OPTIONS I called in arm_option_override. And it s

[patch] ARM FreeBSD fix bootstrap

2015-12-22 Thread Andreas Tobler
Hi all, the commit for PR68617 broke boostrap on armv6*-*-freebsd*. We still have unaligned_access = 0 on armv6 here on FreeBSD. The commit from the above PR overrides my SUBTARGET_OVERRIDE_OPTIONS I called in arm_option_override. And it sets the unaligned_access to 1. The attached patch fix