cờ tùy chọn chia sẻ gcc

gcc -shared tạo tệp đối tượng được chia sẻ cho thư viện được chia sẻ.

Cú pháp

$ gcc -shared [options] [source files] [object files] [-o output file]

Thí dụ???

myfile.c :

// myfile.c
#include <stdio.h/

int main()
{
    printf("Program run!\n");
    int i=10;
}

 

Bản dựng thường xuyên của myfile.c không đưa ra thông báo nào:

$ gcc myfile.c -o myfile
$

 

Xây dựng myfile.c với -Wall:

$ 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
$

 


Xem thêm

Advertising

GCC
BẢNG RAPID