The program used to build the Second Life viewer is called SCons, a program intended to replace make.
用来构建SecondLife查看器的程序称为SCons,这是一个可以替代make 的程序。
If you want to run more than one job at once, just add -j 3 to the scons command line, same as for GNU make.
如果您希望一次运行多个作业,可以简单地将- j3添加到scons命令行中,这与GNU make非常类似。
The main thing you need to know if you're going to start messing around with the build process is that the project file (called "SConstruct") used by SCons is a Python program.
如果您想要了解构建过程,需要了解的主要问题是SCons使用的项目文件(称为“SConstruct”)是一个Python程序。
The .o files are placed in /tmp; specifically, SCons builds a directory tree in /tmp/username in which it stores output files so as to avoid altering the build tree more than absolutely necessary.
o文件都放在 /tmp 中;具体来说,SCons 会在 /tmp/username中创建一个目录树,并将输出文件放到这个目录中,从而避免在非绝对必要的情况下修改构建树。
The .o files are placed in /tmp; specifically, SCons builds a directory tree in /tmp/username in which it stores output files so as to avoid altering the build tree more than absolutely necessary.
o文件都放在 /tmp 中;具体来说,SCons 会在 /tmp/username中创建一个目录树,并将输出文件放到这个目录中,从而避免在非绝对必要的情况下修改构建树。
应用推荐