[llvm-commits] [llvm] r165081 - in /llvm/trunk/test: ExecutionEngine/MCJIT/lit.local.cfg lit.cfg

Kaylor, Andrew andrew.kaylor at intel.com
Wed Oct 3 10:33:50 PDT 2012


I wasn't sure about MingW and Cygwin.  I thought they should both work with ELF-object generation enabled, but I didn't have a platform setup to test them.  I also thought enabling those platforms might cause problems with the cross-build bots.

-Andy

-----Original Message-----
From: llvm-commits-bounces at cs.uiuc.edu [mailto:llvm-commits-bounces at cs.uiuc.edu] On Behalf Of NAKAMURA Takumi
Sent: Tuesday, October 02, 2012 6:43 PM
To: llvm-commits at cs.uiuc.edu
Subject: [llvm-commits] [llvm] r165081 - in /llvm/trunk/test: ExecutionEngine/MCJIT/lit.local.cfg lit.cfg

Author: chapuni
Date: Tue Oct  2 20:42:37 2012
New Revision: 165081

URL: http://llvm.org/viewvc/llvm-project?rev=165081&view=rev
Log:
test/ExecutionEngine/MCJIT: MCJIT should work also on mingw.

FIXME: Also cygwin?

Modified:
    llvm/trunk/test/ExecutionEngine/MCJIT/lit.local.cfg
    llvm/trunk/test/lit.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=165081&r1=165080&r2=165081&view=diff
==============================================================================
--- llvm/trunk/test/ExecutionEngine/MCJIT/lit.local.cfg (original)
+++ llvm/trunk/test/ExecutionEngine/MCJIT/lit.local.cfg Tue Oct  2 
+++ 20:42:37 2012
@@ -16,5 +16,5 @@
 if root.host_arch not in ['x86', 'x86_64', 'ARM', 'Mips']:
     config.unsupported = True
 
-if root.host_os in ['Cygwin', 'MingW', 'Darwin']:
+if root.host_os in ['Cygwin', 'Darwin']:
     config.unsupported = True

Modified: llvm/trunk/test/lit.cfg
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/lit.cfg?rev=165081&r1=165080&r2=165081&view=diff
==============================================================================
--- llvm/trunk/test/lit.cfg (original)
+++ llvm/trunk/test/lit.cfg Tue Oct  2 20:42:37 2012
@@ -142,7 +142,7 @@
 # Provide a target triple for mcjit tests  mcjit_triple = config.target_triple  # Force ELF format on Windows -if 'win32' in mcjit_triple.lower():
+if re.search(r'mingw32|win32', mcjit_triple):
   mcjit_triple += "-elf"
 config.substitutions.append( ('%mcjit_triple', mcjit_triple) )
 


_______________________________________________
llvm-commits mailing list
llvm-commits at cs.uiuc.edu
http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits




More information about the llvm-commits mailing list