我正在与Beaglebone Black合作一个项目,并遇到了一个问题。作为我项目的一部分,我想使用OpenBTS在GSM网络上进行通信。然而,由于Beaglebone是基于ARM的,因此OpenBTS附带的收发器52m无法使用。因此,我需要安装一个ARM友好的收发器。我认为最好的收发器是osmoo - trx。
我按照他们网站上的说明做:http://openbsc.osmocom.org/trac/wiki/OsmoTRX
然而,当它来做项目,得到了一个错误,我真的卡住了。当我执行命令"make"后。/configure——with-neon",我得到错误:
make: ***没有规则来创建目标'/Makefile.common',而'Makefile.in'需要。停止。
有人能帮我解决这个问题吗?我找遍了,找不到任何适用的答案。我真的很感激。提前谢谢你!
注:OsmoTRX的所有源代码都可以在以下网址找到:https://github.com/osmocom/osmo-trx
丢失的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