Re: [Tinycc-devel] Where do I get pthread.h?

2024-02-07 Thread ian
First of all : Hello. I really rarely answer (when I unexpectedly could), BUT : with tcc, this (test.c) #include #include int main(void) {   printf("%d\n", PTHREAD_PRIO_NONE);   return 0; } |compiles and ouputs :| |ian@KsyNET-0:~$ tcc -run test.c 0 ian@KsyNET-0:~$ | |Furthermore, I

[Tinycc-devel] Where do I get pthread.h?

2024-02-07 Thread Videogamer555
I was trying to compile a program that requires pthread.h (which is a header file that comes with GCC by default, and I thought that TCC was supposed to be GCC compatible) but TCC is missing pthread.h unfortunately. So I can't compile the program who's source code I downloaded, because its source