[llvm] r217267 - The gold tests also require ppc to be compiled in.
Rafael Espindola
rafael.espindola at gmail.com
Fri Sep 5 12:01:12 PDT 2014
Author: rafael
Date: Fri Sep 5 14:01:12 2014
New Revision: 217267
URL: http://llvm.org/viewvc/llvm-project?rev=217267&view=rev
Log:
The gold tests also require ppc to be compiled in.
We could create a tools/gold/PowerPC and a tools/gold/X86, but it doesn't seem
worth it.
Modified:
llvm/trunk/test/tools/gold/lit.local.cfg
Modified: llvm/trunk/test/tools/gold/lit.local.cfg
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/tools/gold/lit.local.cfg?rev=217267&r1=217266&r2=217267&view=diff
==============================================================================
--- llvm/trunk/test/tools/gold/lit.local.cfg (original)
+++ llvm/trunk/test/tools/gold/lit.local.cfg Fri Sep 5 14:01:12 2014
@@ -1,3 +1,4 @@
if (not 'ld_plugin' in config.available_features or
- not 'X86' in config.root.targets):
+ not 'X86' in config.root.targets or
+ not 'PowerPC' in config.root.targets):
config.unsupported = True
More information about the llvm-commits
mailing list