https://my.oschina.net/u/115346/blog/480854
在arm平台交叉编译ZBar开源软件, 并将显示改成直接在Framebuffer设备显示
git clone https://github.com/ZBar/ZBar.git
cd ZBar
libtoolize --copy --force --install
aclocal
autoconf
autoheader
automake -a -c -f --foreign
# 请根据实际情况修改CC和--prefix
CC=/path/to/arm-linux-gnueabi-gcc ./configure --host=arm-linux --without-imagemagick --without-python --without-qt --without-java --without-gtk --prefix=/path/to/rootfs
make
make install
离线