首页 > 代码库 > undefined reference to symbol 'floor@@GLIBC_2.0'

undefined reference to symbol 'floor@@GLIBC_2.0'

编译程序的时候出现错误:

/my/gtk/calculator$ gcc -o  main main.c  `pkg-config --libs --cflags gtk+-2.0` 


/usr/bin/ld: /tmp/ccUS8pua.o: undefined reference to symbol ‘floor@@GLIBC_2.0‘
//lib/i386-linux-gnu/libm.so.6: error adding symbols: DSO missing from command line
collect2: error: ld returned 1 exit status

主要是gcc在编译过程中用到一些库未被添加进去,

修改一下编译条件:

 gcc -o  main main.c -lm  `pkg-config --libs --cflags gtk+-2.0` 

在编译条件中添加必要的链接库就可以了。

undefined reference to symbol 'floor@@GLIBC_2.0'