Re: Buildbot failure in Wildebeest Builder on whole buildset

2021-08-06 Thread Philip Herron
On 04/08/2021 21:25, Mark Wielaard wrote: > Hi, > > On Wed, Aug 04, 2021 at 03:15:00PM +, build...@builder.wildebeest.org > wrote: >> The Buildbot has detected a new failure on builder gccrust-debian-arm64 >> while building gccrust. >> Full details are available at: >> https://builder.wil

Re: Modifying self

2021-08-06 Thread Philip Herron
On 05/08/2021 00:58, Mark Wielaard wrote: > Hi, > > I am trying to get this program working: > > extern "C" { fn abort (); } > > pub struct H > { > l: u32, > } > > impl H > { > fn p (&mut self) -> u32 > { > self.l -= 1; > self.l > } > } > > fn main () > { > let mut h = H { l: 11

Re: [PATCH] More rustspec.cc cleanups

2021-08-06 Thread Philip Herron
On 06/08/2021 00:34, Mark Wielaard wrote: > rustspec.cc was based on the Go frontend gospec.cc. Remove special > handling of math and pthread libraries and profiling option. Handle > .rs files instead of .go files. Keep support for linking with (static) > librust which is currently commented out. A

Re: [PATCH] Pass pratt parsed token to expr parser functions to fix expr locus

2021-08-06 Thread Philip Herron
On 05/08/2021 20:37, Mark Wielaard wrote: > Hi, > > On Fri, Jul 30, 2021 at 03:03:13AM +0200, Mark Wielaard wrote: >> That variant is attached and can also be found here: >> https://code.wildebeest.org/git/user/mjw/gccrs/commit/?h=pass-pratt-parse-loc >> The original is also here: >> https://code.w

Re: Buildbot failure in Wildebeest Builder on whole buildset

2021-08-06 Thread cohenarthur.dev via Gcc-rust
On 21/08/06 03:31PM, Philip Herron wrote: > On 04/08/2021 21:25, Mark Wielaard wrote: > > Hi, > > > > On Wed, Aug 04, 2021 at 03:15:00PM +, build...@builder.wildebeest.org > > wrote: > >> The Buildbot has detected a new failure on builder gccrust-debian-arm64 > >> while building gccrust. > >>

Re: Buildbot failure in Wildebeest Builder on whole buildset

2021-08-06 Thread Mark Wielaard
Hi Philip, On Fri, Aug 06, 2021 at 03:31:07PM +0100, Philip Herron wrote: > > Is it possible to make bors check all commits in a series? Or can we > > somehow connect the buildbot workers to the bors checks? > > I think the build-bot checks for every commit is a really nice feature > here. I thin

Re: [PATCH] More rustspec.cc cleanups

2021-08-06 Thread Mark Wielaard
Hi Philip, On Fri, Aug 06, 2021 at 03:58:24PM +0100, Philip Herron wrote: > Great patch, this file has been neglected. This is now being merged > https://github.com/Rust-GCC/gccrs/pull/610 > > Its not 100% clear but is the compiler driver here automatically adding > in -lc or is it simply checkin

Re: Buildbot failure in Wildebeest Builder on whole buildset

2021-08-06 Thread Mark Wielaard
Hi Arthur, On Fri, Aug 06, 2021 at 05:55:09PM +0200, cohenarthur.dev via Gcc-rust wrote: > I'm really sorry about not having all the commits build. I tried to keep > them as atomic as possible and clearly didn't check all of them > separately. This could have been a single commit and would have av

Re: [PATCH] Pass pratt parsed token to expr parser functions to fix expr locus

2021-08-06 Thread Mark Wielaard
On Fri, Aug 06, 2021 at 04:23:27PM +0100, Philip Herron wrote: > On 05/08/2021 20:37, Mark Wielaard wrote: > > Hi, > > > > On Fri, Jul 30, 2021 at 03:03:13AM +0200, Mark Wielaard wrote: > >> That variant is attached and can also be found here: > >> https://code.wildebeest.org/git/user/mjw/gccrs/com