Re: parallel build failure with .c.o rule interrupted mid-step!

RVP <[email protected]> Mon, 24 Feb 2025 21:57:58 +0000 (UTC)
Newsgroups gmane.os.netbsd.current,gmane.os.netbsd.devel.toolchain
Message-ID <[email protected]>
On Mon, 24 Feb 2025, Greg A. Woods wrote:

> The rule where this happened is of course this one:
>
> 	.c.o:
> 		${COMPILE.c} ${.IMPSRC} ${OBJECT_TARGET}
> 		${CTFCONVERT_RUN}
>
> Which basically expands to the following script
>
> 	cc host.c -o host.o.o
> 	ctfconvert -o host.o host.o.o && rm -f host.o.o
>

That would be:

 	nbctfconvert -g -L VERSION ...

unless you've got `USETOOLS=no' defined somewhere?

This seems like a ctfconvert issue to me. It's truncating the output file,
then abandoning processing due to some error or other. Out of space perhaps?

-RVP