Thread overview
Build problem
Jun 29, 2014
Timo Sintonen
Jun 29, 2014
Iain Buclaw
Jun 29, 2014
Timo Sintonen
June 29, 2014
I tried to build my cross compiler from current head.
I got "lvalue required as left operand of assignment" in d-objfile.cc lines 1717 and 2107.
June 29, 2014
On 29 June 2014 08:16, Timo Sintonen via D.gnu <d.gnu@puremagic.com> wrote:
> I tried to build my cross compiler from current head.
> I got "lvalue required as left operand of assignment" in d-objfile.cc lines
> 1717 and 2107.

Hi Timo,

This would be more changes in upstream GCC that haven't been caught up with yet.  Typically you can avoid these sorts of build errors by getting the snapshot version in the 'gcc.version' file.

https://github.com/D-Programming-GDC/GDC/blob/master/gcc.version

Which you can cross check against any gcc mirror repos, and find:

ftp://ftp.mirrorservice.org/sites/sourceware.org/pub/gcc/snapshots/4.10-20140608/


Regards
Iain.
June 29, 2014
On Sunday, 29 June 2014 at 08:21:34 UTC, Iain Buclaw via D.gnu wrote:
> On 29 June 2014 08:16, Timo Sintonen via D.gnu <d.gnu@puremagic.com> wrote:
>> I tried to build my cross compiler from current head.
>> I got "lvalue required as left operand of assignment" in d-objfile.cc lines
>> 1717 and 2107.
>
> Hi Timo,
>
> This would be more changes in upstream GCC that haven't been caught up
> with yet.  Typically you can avoid these sorts of build errors by
> getting the snapshot version in the 'gcc.version' file.
>
> https://github.com/D-Programming-GDC/GDC/blob/master/gcc.version
>
> Which you can cross check against any gcc mirror repos, and find:
>
> ftp://ftp.mirrorservice.org/sites/sourceware.org/pub/gcc/snapshots/4.10-20140608/
>
>
> Regards
> Iain.

I guessed that. Gcc development is currently in the state where big changes are allowed.

I am aware of gcc.version. I just tried if the head works and wanted to tell the result.