[Mono-devel-list] Bootstrap issues on HP-UX

Bernie Solomon bernard at ugsolutions.com
Wed Jul 21 13:44:42 EDT 2004


I also do build on HPUX (PARISC) using HP's C compiler.

Most of the problems below are warnings which you get out
of non-GCC compilers. I'd just suggest setting CFLAGS to
switch the warning off by number to remove all the noise (warning
942 is the main one that creates many messages in your output).

The only error is:

> Error 201: "reflection.c", line 1424 # Pointer operands must be of the
same
> type for operator ':'; comparison of 'unsigned char *' and 'const char *'.
>                      ta->aname.public_key_token [0] ? ta->aname.
> public_key_token : "null");

which I have just fixed in cvs. The ?: operator doesn't  type check.
Inserting
as cast:

                      ta->aname.public_key_token [0] ? (char
*)ta->aname.public_key_token : "null");

fixes it.

Bernie Solomon




More information about the Mono-devel-list mailing list