Sunny-Maxis
Sunny-Maxis
Comment for Rodrigo: Do not adopt meson if you plan to support old UNIXes. Muon, the C99 Meson, is unfortunately poorly coded with poor support for aligned access on RISC...
> I hope you don't plan on compiling CMake on systems without a C++ (11) compiler. Building a build tool with GCC is different than building a program with a...
> If you @Sunny-Maxis want to help improving the support on IRIX that would be nice to have. Feel free to open another issue to track the current status and...
Hello Rodrigo, GCC works fine with IRIX to an extent, but it has some annoyances: 1. fltk has to be recompiled from mipspro to GCC because GCC does not respect...
I will talk to him about it and see if we can fork the repo at some point and make it happen. Thanks for being open to it.
> I think we could drop the variadic macros, but not sure if it is worth the hassle. Maybe I can leave this for later as it seems GCC is...
Ignore my past comment that I had which I just deleted. The setenv() fix still requires unsetenv() which we don't have either. I just checked. I don't have recursive grep...
Your fix did work with the caveat that stdint.h must be placed before tcp.h Your unsetenv() fix worked as well. I can definitely poke around and copy a set of...
I had to explicitly declare the struct in dpid/main.c and dpi/file.c I think the best way to handle this would be to make a header sgi_timeval.h or something and explicitly...
Sending you a tarball with the stuff within an hour, as for this issue: ```c #if defined(__sgi) && defined(__GNUC__) struct timeval { time_t tv_sec; long tv_usec; } select_timeout; ``` This...