diff options
-rw-r--r-- | test/lit.cfg | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/lit.cfg b/test/lit.cfg index 38a2ec20ec8..70a14a7648f 100644 --- a/test/lit.cfg +++ b/test/lit.cfg @@ -353,7 +353,7 @@ def have_ld_plugin_support(): if not os.path.exists(os.path.join(config.llvm_shlib_dir, 'LLVMgold.so')): return False - ld_cmd = subprocess.Popen([config.gold_executable, '--help'], stdout = subprocess.PIPE) + ld_cmd = subprocess.Popen([config.gold_executable, '--help'], stdout = subprocess.PIPE, env={'LANG': 'C'}) ld_out = ld_cmd.stdout.read().decode() ld_cmd.wait() @@ -374,7 +374,7 @@ def have_ld_plugin_support(): if 'elf32ppc' in emulations: config.available_features.add('ld_emu_elf32ppc') - ld_version = subprocess.Popen([config.gold_executable, '--version'], stdout = subprocess.PIPE) + ld_version = subprocess.Popen([config.gold_executable, '--version'], stdout = subprocess.PIPE, env={'LANG': 'C'}) if not 'GNU gold' in ld_version.stdout.read().decode(): return False ld_version.wait() |