6

我已将以下库包含到我的代码中。

#include <minix/drivers.h>
#include <curl/curl.h>
#include <sys/stat.h>
#include <time.h>
#include <assert.h>
#include <string.h>

现在我收到以下错误:

In file included from /usr/local/include/curl/curlbuild.h:152
                 from /usr/local/include/curl/curl.h:34
                 from xxx.c:2
/usr/pkg/gcc44/lib/gcc/i686-pc-minix/4.4.3/include-fixed/sys/socket.h:134: error: conflicting types for '_send'
/usr/include/minix/ipc.h:152: note: previous declaration was here

据我所知,这意味着_send已在两个库(minix/drivers.hcurl/curl.h)中声明,我想知道是否有可能解决此问题或以某种方式解决它?

4

1 回答 1

1

由于您使用的是 minix,您可以使用objcopy. 从手册页:

--redefine-sym old=new
       Change the name of a symbol old, to new.  This can be useful when 
       one is trying link two things together for which you have no source, 
       and there are name collisions.

或者,如果您不需要_send其中一个库:

-L symbolname
--localize-symbol=symbolname
       Make symbol symbolname local to the file, so that it is not visible 
       externally.  This option may be given more than once.

当然,您需要相应地更新标题。我还建议将修改后的库和标头命名为其他名称,这样很明显您已经修改了它们。

于 2012-01-19T00:44:39.513 回答