[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Qemu 4.1.0 compile error on target/xtensa/core-test_mmuhifi_c3.o
From: |
Peter Maydell |
Subject: |
Re: Qemu 4.1.0 compile error on target/xtensa/core-test_mmuhifi_c3.o |
Date: |
Sun, 27 Oct 2019 19:32:36 +0000 |
On Sat, 26 Oct 2019 at 21:11, Bill Toner <address@hidden> wrote:
>
> ./configure --prefix=/opt/emulation/qemu/4.1.0
> make
> ...
> ...
> LINK xtensaeb-softmmu/qemu-system-xtensaeb
> /usr/bin/ld: target/xtensa/core-test_mmuhifi_c3.o: file not recognized: file
> truncated
> collect2: error: ld returned 1 exit status
> make[1]: *** [Makefile:209: qemu-system-xtensaeb] Error 1
> make: *** [Makefile:472: xtensaeb-softmmu/all] Error 2
>
> (end of output and back to shell at this point)
"File truncated" means something went wrong trying
to write the .o file -- perhaps running out of disk space?
(I note that since 'xtensa' starts with 'x' this is going to be
one of the last files to be written.)
The linker has then complained about finding half a file
where it expected a whole one.
thanks
-- PMM