We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 40104de commit f46e17fCopy full SHA for f46e17f
analyzer/codechecker_analyzer/env.py
@@ -28,7 +28,8 @@ def get_log_env(logfile, original_env):
28
new_env[context.env_var_cc_logger_bin] = context.path_logger_bin
29
30
if 'LD_PRELOAD' in new_env:
31
- new_env['LD_PRELOAD'] = new_env['LD_PRELOAD'] + " " +context.logger_lib_name
+ new_env['LD_PRELOAD'] = new_env['LD_PRELOAD'] \
32
+ + " " + context.logger_lib_name
33
else:
34
new_env['LD_PRELOAD'] = context.logger_lib_name
35
0 commit comments