QQ登录

只需一步,快速开始

 找回密码
 注册

QQ登录

只需一步,快速开始

查看: 656|回复: 0

cygwin一个奇怪的问题

[复制链接]
发表于 2004-4-21 02:16:31 | 显示全部楼层 |阅读模式
cygwin下gcc一个奇怪的问题
发现一个问题:
在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环境下是没有此现象的。
您需要登录后才可以回帖 登录 | 注册

本版积分规则

GMT+8, 2024-11-8 14:16 , Processed in 0.049170 second(s), 16 queries .

© 2021 Powered by Discuz! X3.5.

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