1. python版本號不對問題python
make micaz simshell
解決:tinyos-2.x/support/make/sim.extra 文件,將獲取 PYTHON_VERSION 的語句改爲:atom
PYTHON_VERSION ?= $(shell python2 --version 2>&1 | sed 's/Python 2\.\([0-9]\)\.[0-9]*/2.\1/')
2. gcc-g++版本號太新spa
其它python文件,導入上一步生成的 TOSSIM.py 時出現以下問題:code
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "TOSSIM.py", line 7, in <module>
import _TOSSIM
ImportError: ./_TOSSIMmodule.so: undefined symbol: __nesc_atomic_endblog
解決方案:io
查看當前gcc版本:gcc -vast
安裝gcc-4.8,g++-4.8class
sudo apt install gcc-4.8 g++-4.8
查看全部已安裝的gcc版本:ls /usr/bin/gcc*import
gcc-5, gcc-4.8
切換版本:
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-5 50 sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-4.8 40
sudo update-alternatives --config gcc
# 選擇gcc版本 sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-5 50 sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-4.8 40sudo update-alternatives --config g++# 選擇g++版本