"William S." writes:
... in /usr/people/wstan/nhc98-1.16/src/runtime/Kernel
/usr/include/stdint.h:5:2: #error This header file is to be used only for
c99 mode compilations
I suggest you alter the files
src/runtime/Kernel/mark.h
include/HsFFI.h
Where there is a conditional inclusion of , change the
condition to make the IRIX version include instead.
For instance
# if defined(__sun__) || defined(__FreeBSD__) || defined(__OpenBSD__)
# include
# else
# include
# endif
could become something like
# if defined(__sun__) || defined(__FreeBSD__) || defined(__OpenBSD__) || defined(__sgi)
# include
# else
# include
# endif
If this still does not solve the problem, you could try using the
Cygwin-like branch of the conditional instead.
Regards,
Malcolm