gcc-спільний прапор опції

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
ШВИДКІ СТОЛИ