gem5 scons build fails with "TypeError: argument should be integer or bytes-like object, not 'str'"

gem5 scons build fails with "TypeError: argument should be integer or bytes-like object, not 'str'"

我正在尝试在 Ubuntu 20.04 的全新安装上安装 gem5,并使用提交 9fc9c67b4242c03f165951775be5cd0812f2a705。我用过 http://learning.gem5.org/book/part1/building.htmlhttps://www.gem5.org/documentation/general_docs/building 作为我的向导。据我所知,我已经安装了所有必需的依赖项(这两行中重复了一些依赖项)

sudo apt install build-essential git m4 scons zlib1g zlib1g-dev libprotobuf-dev protobuf-compiler libprotoc-dev libgoogle-perftools-dev python-dev python

sudo apt install build-essential git m4 scons zlib1g zlib1g-dev \
    libprotobuf-dev protobuf-compiler libprotoc-dev libgoogle-perftools-dev \
    python-dev python libboost-all-dev

然后,当我尝试使用

构建 gem5 时
git clone https://gem5.googlesource.com/public/gem5
cd gem5    
scons build/X86/gem5.opt -j8

执行 'scons' 行后得到以下输出:

scons: Reading SConscript files ...
Warning: Failed to find git repo directory: a bytes-like object is required, not 'str'
TypeError: argument should be integer or bytes-like object, not 'str':
  File "/home/john/gem5/SConstruct", line 355:
    main['GCC'] = CXX_version and CXX_version.find('g++') >= 0

我不确定如何修复这个错误,甚至不知道为什么会出现这个错误;我什至不知道这个错误在说什么。任何帮助,将不胜感激。

是的。这是 运行 在 scons 中实现的构建系统仅期望 python2.

的结果

如果你被困在这里,你可以做些什么来编译,直到 gem 项目推送他们的 Python 3 + SCons 更改。

sudo apt-get install virtualenv
# create a virtualenv which uses python 2.7
virtualenv -p python2.7 venv27
# activate the virtualenv
. venv27/bin/activate
# Install SCons in the python 2.7 virtualenv
pip install scons
# This will now use the scons installed in a python 2.7 virtualenv.
scons build/X86/gem5.opt -j8

这对我在 Ubuntu 20.04 系统上有效。