જીસીસી-શેર્ડ શેર્ડ લાઇબ્રેરી માટે શેર કરેલી objectબ્જેક્ટ ફાઇલ બનાવે છે.
$ gcc -shared [options] [source files] [object files] [-o output file]
myfile.c :
// myfile.c
#include <stdio.h/
int main()
{
printf("Program run!\n");
int i=10;
}
માયફાઇલ.સી.નું નિયમિત નિર્માણ કોઈ સંદેશા આપતું નથી:
$ gcc myfile.c -o myfile
$
Myfile.c નું બિલ્ડ -વોલ સાથે:
$ gcc -Wall myfile.c -o myfile
myfile.c In function 'main':
myfile.c:6:6: warning: unused variable 'i'
myfile.c:7:1: warning: control reaches end of non-void function
$