http://llvm.org/bugs/show_bug.cgi?id=22564
Bug ID: 22564
Summary: have_ld_plugin_support in test/lit.cfg doesn't work
properly
Product: new-bugs
Version: unspecified
Hardware: PC
OS: Linux
Status: NEW
Severity: normal
Priority: P
Component: new bugs
Assignee: [email protected]
Reporter: [email protected]
CC: [email protected], [email protected]
Classification: Unclassified
have_ld_plugin_support in test/lit.cfg has 2 issues:
1. It expects gold:
ld_version = subprocess.Popen(['ld', '--version'], stdout =
subprocess.PIPE)
if not 'GNU gold' in ld_version.stdout.read():
return False
Ld on binutils master branch supports LLVM plugin.
2. It expects elf32ppc support:
emulations = fields[2].split()
if 'elf32ppc' not in emulations or 'elf_x86_64' not in emulations:
return False
Even my gold doesn't have elf32ppc support.
--
You are receiving this mail because:
You are on the CC list for the bug.
_______________________________________________
LLVMbugs mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/llvmbugs