@mngrif so I am assuming that you are compiling a source. s because you started with a source.c and compiled it with gcc -S
I am further guessing you called something like printf() or puts() in the source.c file.
You need to pull in the c library, so using gcc -o source source.s will be your friend.
gcc -S hello.c
gcc -o hello hello.s
./hello