21 Jul
2017
21 Jul
'17
5:04 p.m.
On 21/07/2017 13:38, Levente wrote:
You are missing stdint.h. Try to locate that, and include the directory. However, this is odd, since it should be shipped with GCC itself.
Headers are generally supplied by the OS not the compiler, stdint.h is
$ find /usr/include -name stdint.h /usr/include/sys/stdint.h /usr/include/stdint.h
from SUNWhea on S10 and system/header on S11. Nevertheless it's missing on Solaris 8 and 9. You can make your own, this worked for me on Solaris 9 at least once, untested recently:
#ifndef _STDINT_H #define _STDINT_H
#include
#endif /* _STDINT_H */
Or just #define what you think it needs, it's not complex.