开始嵌入式编译时遇到的bug

undefined reference to `__imp__socket'

解决: 

Put the  -lws2_32  AFTER the list of object files - GCC searches libraries and object files in the order they appear on the command line.

Just to help the other viewers out there:

gcc hello.c -o hello.o -lws2_32
当时用Dev c++编译的带有socket的源文件:

网址:https://stackoverflow.com/questions/2033608/mingw-linker-error-winsock

          https://sourceforge.net/p/mingw-w64/support-requests/9/

经典回答:

    

It appears i neglected to use -lws2_32. The undefined references for socket functions are gone.

However the undefined references for pthread are back. :(


97 down vote accepted

Put the -lws2_32 AFTER the list of object files - GCC searches libraries and object files in the order they appear on the command line.

Just to help the other viewers out there:

gcc hello.c -o hello.o -lws2_32
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值