gcc -l linkt naar een bibliotheekbestand.
gcc -L zoekt in de directory naar bibliotheekbestanden.
$ gcc [options] [source files] [object files] [-Ldir] -llibname [-o outfile]
Link -l met bibliotheeknaam zonder het voorvoegsel lib en de .a of .so extensies.
Voor statisch bibliotheekbestand libmath. een gebruik -lmath :
$ gcc -static myfile.c -lmath -o myfile
Voor gedeeld bibliotheekbestand libmath. dus gebruik -lmath :
$ gcc myfile.c -lmath -o myfile
file1.c:
// file1.c
#include <stdio.h/
void main()
{
printf("main() run!\n");
myfunc();
}
file2.c:
// file2.c
#include <stdio.h/
void myfunc()
{
printf("myfunc() run!\n");
}
Bouw file2.c , kopieer objectbestand file2.o naar de map libs en archiveer het in de statische bibliotheek libmylib.a :
$ gcc -c file2.c
$ mkdir libs
$ cp file2.o libs
$ cd libs
$ ar rcs libmylib.a file2.o
Bouw file1.c met statische bibliotheek libmylib.a in de map libs .
Bouwen zonder -L resultaten met een fout:
$ gcc file1.c -lmylib -o outfile
/usr/bin/ld: cannot find -llibs
collect2: ld returned 1 exit status
$
Bouw met -L en voer uit:
$ gcc file1.c -Llibs -lmylib -o outfile
$ ./outfile
main() run!
myfunc() run!
$