1

I am working with a BeagleBoard and I have already compiled ZMQ library with arm-linux-gnueabi gcc compiler. The problem is I don't know where to copy all that files because I don't have make command nor I am able to install it.

If I run:

uname -mrs

I get:

Linux 3.2.8-mg01.3 armv7l

Thanks in advance!

4

1 回答 1

2

在您的构建机器上构建和安装所需的库:

./configure --prefix=/custom/location
make && make install

然后从你的构建机器复制/custom/location到目标机器的 root /
您需要检查是否有任何内容被覆盖(或者至少没有丢失任何依赖项)。

另一种正确的方法是创建一个可安装的包(即,debrpm),但这是一个不同的问题。

于 2013-06-19T08:37:34.177 回答