cc -g -o example main.c -lFLAC -lm Which will compile a debug version of main.c, link it to the system libflac and libm, and create an executable called 'example'. Good luck with your programming efforts, -r