Sublime Forum

Custom build file for SCons on linux

#1

The following custom build file:

{
	"cmd": "external/scons-local/scons.py bin my mode=debug -j8"],
	"working_dir": "/home/lah435/rosetta/rosetta_source"
}

produces this error message:
[Errno 2] No such file or directory
[Finished]

yet if I type the same commands on the linux command line it works fine:
**$ cd /home/lah435/rosetta/rosetta_source
$ external/scons-local/scons.py bin my mode=debug -j8
scons: Reading SConscript files …
scons: done reading SConscript files.
scons: Building targets …
**
Can anyone tell me what I’m doing wrong?

0 Likes

#2

try with this:

"cmd": "external/scons-local/scons.py", "bin", "my", "mode=debug", "-j8"]
0 Likes