remove patches merged upstream

This commit is contained in:
Sylvestre Ledru 2015-08-31 07:39:49 +00:00
parent e6e42cd025
commit 9adce59e2c
2 changed files with 0 additions and 26 deletions

View File

@ -1,13 +0,0 @@
Index: llvm-toolchain-snapshot_3.7~svn242297/test/lit.cfg
===================================================================
--- llvm-toolchain-snapshot_3.7~svn242297.orig/test/lit.cfg
+++ llvm-toolchain-snapshot_3.7~svn242297/test/lit.cfg
@@ -345,7 +345,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()

View File

@ -1,13 +0,0 @@
Index: llvm-toolchain-snapshot_3.7~svn241962/test/lit.cfg
===================================================================
--- llvm-toolchain-snapshot_3.7~svn241962.orig/test/lit.cfg
+++ llvm-toolchain-snapshot_3.7~svn241962/test/lit.cfg
@@ -366,7 +366,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()