我在 ubuntu12.04 上用 g++/gcc 编译,它“OK”,但我不能使用 raspberry pi tools master 进行交叉编译
toolsmaster
CC := /home/Desktop/Simple_Linux_Driver/tools-master/arm-bcm2708/arm-bcm2708-linux-gnueabi/bin/arm-bcm2708-linux-gnueabi-g++
GCC := /home/Desktop/Simple_Linux_Driver/tools-master/arm-bcm2708/arm-bcm2708-linux-gnueabi/bin/arm-bcm2708-linux-gnueabi-gcc
我已经安装了以下项目:
-sudo apt-get install libusb-1.0-0-dev
-sudo apt-get install libudev-dev
树莓派内核版本 3.2.27(我需要启用“如何”并再次重建)?
最佳答案
其作品!!!我需要在 raspberry pi cross toolsmaster 中交叉编译和 cp .h .so
以下是我的尝试:
如果我错过了什么,请告诉我谢谢^^
下载 libusb 最新版本的 tar 文件。
版本 1.0.8
$ TOOLCHAIN=/opt/FriendlyArm/toolchain/4.4.3/arm-none-linux-gnueabi
$ PATH=$PATH:$TOOLCHAIN/bin
$ CC='arm-none-linux-gnueabi-gcc -march=armv4t -mtune=arm920t'
$ CROSS_COMPILE=arm-none-linux-gnueabi-
$ export CC CROSS_COMPILE
$ tar xfv libusb-1.0.8.tar
$ cd libusb-1.0.8
$ ./configure --host arm-linux
$ make
$ cd libusb
$ cp libusb.h $TOOLCHAIN/arm-none-linux-gnueabi/include/
$ cp libusb.h $TOOLCHAIN/arm-none-linux-gnueabi/sysroot/include/
$ cp .libs/libusb-1.0.so $TOOLCHAIN/arm-none-linux-gnueabi/lib/
$ cp .libs/libusb-1.0.so $TOOLCHAIN/arm-none-linux-gnueabi/sysroot/lib/
工具链已设置。
用于编写程序:
添加 #include 以使用他的库。
使用以下编译:
$arm-linux-g++ myprog.cpp -o myapp -lusb-1.0
注意:不要错过“-lusb-1.0”
关于linux - 致命错误 : libudev. h:没有这样的文件或目录,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/17808084/