Files
MultiThreading_Part_A/Hello_World_Thread/compile.sh
2024-03-14 23:02:57 +05:30

4 lines
126 B
Bash

gcc -g -c hello_world_thread.c -o hello_world_thread.o
gcc -g hello_world_thread.o -o hello_world_thread.exe -lpthread
rm *.o