דגלי אפשרות gcc -L / -l

קישורי gcc -l עם קובץ ספרייה.

gcc -L מחפש בספריה קבצי ספרייה.

תחביר

$ gcc [options] [source files] [object files] [-Ldir] -llibname [-o outfile]

 

קישור -l עם שם הספרייה ללא קידומת lib והסיומות .a או .so .

דוגמאות

דוגמה 1

לליבאת קבצים בספריה סטטית . שימוש -למת :

$ gcc -static myfile.c -lmath -o myfile

 
דוגמא 2

לליבאת קבצים בספריה משותפת . אז השתמש ב -lmath :

$ gcc myfile.c -lmath -o myfile

 
דוגמה 3

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");
}

 

Build file2.c , להעתיק אובייקט קובץ file2.o כדי libs ספרייה וארכיון אותו לספריה סטטי libmylib.a :

$ gcc -c file2.c
$ mkdir libs
$ cp file2.o libs
$ cd libs
$ ar rcs libmylib.a file2.o

 

Build file1.c עם ספריית סטטי libmylib.a ב libs בספרייה.

בנה ללא תוצאות L עם שגיאה:

$ gcc file1.c -lmylib -o outfile
/usr/bin/ld: cannot find -llibs
collect2: ld returned 1 exit status
$

בנה עם -L והפעל:

$ gcc file1.c -Llibs -lmylib -o outfile
$ ./outfile
main() run!
myfunc() run!
$

 


ראה גם

Advertising

GCC
שולחנות מהירים