跳过不兼容的错误

时间:2015-04-15 08:39:58

标签: c linux contiki cflags

我下载了nettle 3.0加密库,我在ubuntu上编译了它。 我举了一个例子,它在ubuntu上运行正常。 我将已编译的静态库文件(libnettle.a)添加到我的项目中 contiki中的makefile,只需添加:

LDFLAGS+= -L/usr/local/lib/ -lnettle

当我尝试编译节点代码时,我得到了这个

/usr/local/msp430/bin/../lib/gcc/msp430/4.7.0/../../.*./../msp430/bin/ld:skipping incompatible /usr/l*ocal/lib//libnettle.a when searching for -lnettle
/usr/local/msp430/bin/../lib/gcc/msp430/4.7.0/../../.*./../msp430/bin/ld: cannot find -lnettle*
collect2: error: ld returned 1 exit status
rm obj_sky/contiki-sky-main.o test_nettle.co
Process returned error code 2

make: *** [test_nettle.sky] Error 1

我应该添加-m32标志还是什么?

如果是,那是什么旗帜? CFLAG?

顺便说一句,荨麻库是32位,我检查过。

谢谢

确定。所以我使用以下命令重建库:

./configure --target=msp430 --prefix=/usr/local/Mymsp430
make
make install

将LDFLAG更改为

LDFLAGS+= -L/usr/local/Mymsp430/lib/ -lnettle

但我仍然有同样的错误。

1 个答案:

答案 0 :(得分:2)

您必须使用与构建应用程序时使用的工具链相同的工具链来构建库。

您无法将x86代码链接到为MSP430编译的代码中,而MSP430是一种完全不同的架构。