[llvm] r183143 - Enable mcjit tests on ppc64 when building with cmake.

Rafael Espindola rafael.espindola at gmail.com
Mon Jun 3 12:17:21 PDT 2013


Author: rafael
Date: Mon Jun  3 14:17:21 2013
New Revision: 183143

URL: http://llvm.org/viewvc/llvm-project?rev=183143&view=rev
Log:
Enable mcjit tests on ppc64 when building with cmake.

Modified:
    llvm/trunk/test/ExecutionEngine/MCJIT/lit.local.cfg

Modified: llvm/trunk/test/ExecutionEngine/MCJIT/lit.local.cfg
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/ExecutionEngine/MCJIT/lit.local.cfg?rev=183143&r1=183142&r2=183143&view=diff
==============================================================================
--- llvm/trunk/test/ExecutionEngine/MCJIT/lit.local.cfg (original)
+++ llvm/trunk/test/ExecutionEngine/MCJIT/lit.local.cfg Mon Jun  3 14:17:21 2013
@@ -14,8 +14,10 @@ if ('X86' in targets) | ('AArch64' in ta
 else:
     config.unsupported = True
 
+# FIXME: autoconf and cmake produce different arch names. We should normalize
+# them before getting here.
 if root.host_arch not in ['i386', 'x86', 'x86_64',
-                          'AArch64', 'ARM', 'Mips', 'PowerPC', 'SystemZ']:
+                          'AArch64', 'ARM', 'Mips', 'PowerPC', 'ppc64', 'SystemZ']:
     config.unsupported = True
 
 if 'armv7' in root.host_arch:





More information about the llvm-commits mailing list