在ubuntu14.04 下编译安装Bluez-5.28
1、安装相关依赖库:
#sudo apt-get install libusb-dev libdbus-1-dev libglib2.0-dev automake libudev-dev libical-dev libreadline-dev
2、下载Bluez-5.28压缩包并解压:
#wget http://www.kernel.org/pub/linux/bluetooth/bluez-5.28.tar.xz
#tar xvf bluez-5.43.tar.xz
进入解压后的目录:
#cd bluezbluez
3、执行配置文件
#./configure --prefix=/usr --mandir=/usr/share/man --sysconfdir=/etc --localstatedir=/var
出错,提示:
configure: error: C compiler cannot create executables
See `config.log' for more details
解决方法:
执行:#./configure --with-systemdsystemunitdir=/lib/systemd/system --with-systemduserunitdir=/usr/lib/systemd
4、执行make和install
#make
#sudo make install
没有提示任何错误的话,安装完毕。
但是有一个问题:ubuntu 14.04自带bluez-4.1版本,所以你需要将编译出来的可执行文件hcitool,gatttool一个一个复制到相关的目录下,手动进行版本升级。
略微有点麻烦。