是什么 ? | : | an improved, cross-platform substitute for the classic Make utility with integrated functionality similar to autoconf/automake and compiler caches such as ccache. |
开发语言 | : | Python |
官方网址 | : | https://scons.org |
源码仓库 | : | https://github.com/SCons/scons |
相似软件 | : | CMake |
操作系统 | 包管理器 | 安装命令 |
---|---|---|
All | pip | pip install scons |
macOS | HomeBrew | brew install scons |
GNU/Linux | HomeBrew | brew install scons |
apt | sudo apt-get install -y scons | |
CentOS | yum | sudo yum install -y scons |
dnf | sudo dnf install -y scons | |
openSUSE | zypper | sudo zypper install -y scons |
Alpine Linux | apk | sudo apk add scons |
pacman | sudo pacman -Syyu --noconfirm | |
Gentoo Linux | Portage | sudo emerge scons |
step1、安装依赖
所有时 | Terminal + Shell |
下载时 | cURL |
解压时 | tar + gzip |
安装时 | CPython |
运行时 | CPython |
step2、使用curl命令下载scons
源码包 ()
curl -L -o scons-4.1.0.tar.gz https://github.com/SCons/scons/archive/refs/tags/4.1.0.tar.gz
step3、使用tar解压scons
源码包
tar vxf scons-4.1.0.tar.gz
step4、进入scons-4.1.0
目录
cd scons-4.1.0
step5、查看scons-4.1.0
目录中的内容
step6、安装scons
python setup.py install
SConstruct
是scons
的配置文件,它是Python语法。