We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 87f14f8 commit c8b0b0aCopy full SHA for c8b0b0a
1 file changed
scorep/helper.py
@@ -85,10 +85,10 @@ def generate_compile_deps(config):
85
86
scorep_config = ["scorep-config"] + config
87
88
- (return_code, _, _) = call(scorep_config)
+ (return_code, stdout, stderr) = call(scorep_config)
89
if return_code != 0:
90
raise ValueError(
91
- "given config {} is not supported".format(config))
+ "given config {} is not supported\nstdout: {}\nstrerr: {}".format(config, stdout, stderr))
92
93
(_, ldflags, _) = call(scorep_config + ["--ldflags"])
94
(_, libs, _) = call(scorep_config + ["--libs"])
0 commit comments