mirror of
https://github.com/justinian/jsix.git
synced 2025-12-10 08:24:32 -08:00
Improve stack tracing
This commit is contained in:
@@ -29,7 +29,7 @@ def build(bld):
|
||||
return node.path_from(node.ctx.launch_node())
|
||||
def run(self):
|
||||
from subprocess import check_output
|
||||
args = self.env.objdump + ["-D", self.inputs[0].abspath()]
|
||||
args = self.env.objdump + ["--source", "-D", self.inputs[0].abspath()]
|
||||
with file(self.outputs[0].abspath(), 'w') as output:
|
||||
output.write(check_output(args))
|
||||
|
||||
|
||||
Reference in New Issue
Block a user