mình có 1 đoạn mã đơn giản thế này:
Code:
#include"stdio.h"
int main()
{
printf(" xin chao moi nguoi");
return 0;
}
biên dịch cái này quá đơn giản với lênh " gcc hello.c -o hello" .Nhưng nếu như mình chỉ biên dịch tạo file hello.o rồi mới linking thì gặp lỗi các bạn giải thích giúp mình với:
Code:
thienlong@thienlong-desktop:/media/sda1/HocTap$ gcc -o hello hello.o
hello.o: In function `main':
hello.cpp:(.text+0x19): undefined reference to `printf(char const*, ...)'
hello.o:(.eh_frame+0x11): undefined reference to `__gxx_personality_v0'
collect2: ld returned 1 exit status