On Fri, Feb 12, 2016 at 01:22:04PM +0000, Ruslan Bukin wrote:
> On RISC-V it fails with __uint128_t:
> 
> struct fpregs {
>         __uint128_t     fp_x[32];
> 
> how to fix?
You did not copied the error.

If my guess is correct, the issue is that __uint128_t typedef is not
present in the riscv/include/_types.h.  Either add the type there, or
use e.g. __uint64_t fp_x[32][2]; for the member definition.

BTW, uintmax_t on riscv is defined as uint64.

P.S. Does it also mean that the tinderbox machines (AKA universe11*)
do not have riscv toolchain installed ?  I did run make tinderbox
before the commit.
_______________________________________________
[email protected] mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "[email protected]"

Reply via email to