0

当我尝试将 bluez-4.101 交叉编译到 mipsel-linux 目标时,我遇到了这个问题。

plugins/bluetoothd-hciops.o: In function `init_device':
hciops.c:(.text+0xadc0): undefined reference to `atexit'
hciops.c:(.text+0xadc8): undefined reference to `atexit'

以下是指定的编译器选项和链接器选项

-lstdc++
-L 有libstdc++.so所在的路径
-nostdlib 不指定

期待您的帮助。

4

1 回答 1

0

添加

 #include <stdlib.h>

到文件。

于 2013-11-08T10:50:18.140 回答