这是要执行的代码
cp.exec("cc -Wall /tmp/test.c -o /tmp/test", function(e, stdout, stderr) {
if (e) {
var errorstr = "Compilation failed with the following error
"+ e.message.toString()
client.send(errorstr)
console.log(e, stdout, stderr)
ee.prototype.removeAllListeners()
} else if (stderr.length > 0) {
client.send("Compilion finished with warnings\n"+ stderr + '\n')
client.send('compiled')
ee.prototype.emit('compiled')
} else {
client.send("Compilation successful")
ee.prototype.emit('compiled')
}
})
'client'是socket.io的回调参数的参数。 'ee'是EventEmitter的一个实例
来到这个问题。在运行代码时,回调表明该命令不成功。 console.log(e,stdout,stderr)是
{ [Error: Command failed: ] killed: false, code: false, signal: undefined } '' ''
/tmp/test.c是一个有效的C代码,在检查目录/ tmp时,我发现test.c是正确的,二进制'test'是正在生成并在运行时一个shell,正确执行。所以我不明白为什么它会导致执行不成功。错误对象的信息也没有用。非常感谢一些帮助/解释
答案 0 :(得分:7)
我有点担心控制台中的输出。
{ [Error: Command failed: ] killed: false, code: false, signal: undefined }
看起来不像是一个合适的JSON / JavaScript对象,尤其是[Error: Command failed: ]
部分;至少有一个逗号丢失。
建议:
从命令行运行命令并检查退出代码(使用echo $?
)。如果退出代码是!= 0,那么这意味着命令“失败”(无论这意味着什么)。
当命令失败时,nodejs says it will put the exit code进入e.code
(我在输出中遗漏了......)。找出这个值发生了什么。
请尝试使用if(e !== null)
代替if(e)
。 不应该有所作为。
不是直接调用编译器,而是调用shell脚本,将stderr / stdout重定向到文件(或使用cc ... |& tee /tmp/cc.log
保存副本),以确保复杂设置的任何部分都不会吞下重要信息。