使用Osmo Trx制作错误

时间:2015-09-23 00:38:34

标签: installation makefile software-defined-radio

我正在与Beaglebone Black合作开展一个项目并遇到了一个问题。作为我项目的一部分,我想使用OpenBTS通过GSM网络进行通信。但是,由于Beaglebone是基于ARM的,因此OpenBTS附带的Transceiver52M无法使用。因此,我需要安装一个ARM友好的收发器。我认为最好的收发器是Osmo-Trx。

我按照他们网站上的说明操作: http://openbsc.osmocom.org/trac/wiki/OsmoTRX

然而,当涉及到制作项目时,出现错误并且我真的陷入困境。当我在“./configure --with-neon”之后执行命令“make”时,我收到错误:

  

make:***没有规则来制作'Makefile.in'所需的目标'/Makefile.common'。停止。

有人能帮我解决这个问题。我一直在搜索,找不到任何适用的答案。我真的很感激。非常感谢你!

P.S。 OsmoTRX的所有源代码都可以在https://github.com/osmocom/osmo-trx

找到

1 个答案:

答案 0 :(得分:1)

缺少的Makefile通常是由autotools进程中的遗漏/失败步骤引起的。

我怀疑你要么忘记了autoreconf -i,要么就是没有成功。尝试

cd osmo-trx
git clean -xdf ##Attention: clean slate afterwards!
autoreconf -i ##make sure it reports success
./configure --with-neon ## make sure it reports success
make ## make sure it reports success
sudo make install