ธงตัวเลือก gcc -shared

gcc -shared สร้างไฟล์อ็อบเจ็กต์ที่แชร์สำหรับไลบรารีที่แชร์

ไวยากรณ์

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

 

myfile.c รุ่นปกติไม่ให้ข้อความ:

$ gcc myfile.c -o myfile
$

 

สร้างmyfile.cด้วย -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
$

 


ดูสิ่งนี้ด้วย

Advertising

GCC
ตารางอย่างรวดเร็ว