Comment 16 for bug 1785698

Revision history for this message
Michele Denber (michele31415) wrote : Re: [Qemu-devel] [Bug 1785698] Re: Solaris build error: unknown type name ‘gcry_error_t’

On 08-14-2018 2:17 PM, Peter Maydell wrote:
>
> dtc stuff really necessary?
> It is necessary, but only for certain guest CPU types. You can
> disable it by passing configure both "--disable-fdt" and also
> "--target-list=<some list of targets which doesn't include
> any arm, ppc, mips, microblaze or riscv targets>"
> (for instance "--target-list=x86_64-softmmu".)
Thanks. Turns out I found where "Bad string" was coming from - there's
a call to "uname -s | tr" in dtc/Makefile and that is known not to work
in Solaris 10.. So I just replaced that with "HOSTOS=SunOS" and that
took care of that. dtc compiled just fine.

Now I'm getting a "ld: fatal: unrecognized option '--'" linking libfdt
so I'm going to try a different linker.

Onward :-)

             - Michele