LinuxSir.cn,穿越时空的Linuxsir!

 找回密码
 注册
搜索
热搜: shell linux mysql
查看: 1116|回复: 0

cygwin下gcc一个奇怪的问题

[复制链接]
发表于 2004-4-21 01:47:36 | 显示全部楼层 |阅读模式
发现一个问题:
在cygwin下编译hello.c在链接过程中 -o必须放置在gcc 后,否则不能通过,
log:
gcc `pkg-config gtk+-2.0 --cflags` -c -o hello.o hello.c
gcc `pkg-config gtk+-2.0 --libs-only-L` `pkg-config gtk+-2.0 --libs-only-l` -mms-bitfields -o hello.exe hello.o
hello.o(.text+0x44):base.c: undefined reference to `_gtk_init_abi_check'
hello.o(.text+0x50):base.c: undefined reference to `_gtk_window_new'
hello.o(.text+0x5e):base.c: undefined reference to `_gtk_widget_show'
hello.o(.text+0x63):base.c: undefined reference to `_gtk_main'
collect2: ld returned 1 exit status


当把  -o hello.exe hello.o放置到gcc 后却能通过,
gcc -o hello.exe hello.o `pkg-config gtk+-2.0 --libs-only-L` `pkg-config gtk+-2.0 --libs-only-l` -mms-bitfields
这是是什么原因?
在linux环境下是没有此现象的。
您需要登录后才可以回帖 登录 | 注册

本版积分规则

快速回复 返回顶部 返回列表