Added -b option to override the default bitcode output file name.
[oota-llvm.git] / CMakeLists.txt
index bacb07a33e787597322d8a3f84c0849312ef36ef..55ed4ce23bdece604142bec6e2fbf93c7a11bc0d 100644 (file)
@@ -59,6 +59,7 @@ set(LLVM_ALL_TARGETS
   PIC16
   PowerPC
   Sparc
+  SystemZ
   X86
   XCore
   )
@@ -205,6 +206,9 @@ if( MSVC )
   add_llvm_definitions( -wd4146 -wd4503 -wd4996 -wd4800 -wd4244 -wd4624 )
   add_llvm_definitions( -wd4355 -wd4715 -wd4180 -wd4345 -wd4224 )
 
+  # Suppress 'new behavior: elements of array 'array' will be default initialized'
+  add_llvm_definitions( -wd4351 )
+
   if (NOT ${LLVM_USE_CRT} STREQUAL "")
     list(FIND MSVC_CRT ${LLVM_USE_CRT} idx)
     if (idx LESS 0)
@@ -256,6 +260,8 @@ add_subdirectory(lib/Analysis)
 add_subdirectory(lib/Analysis/IPA)
 add_subdirectory(lib/MC)
 
+add_subdirectory(utils/FileCheck)
+
  set(LLVM_ENUM_ASM_PRINTERS "")
  set(LLVM_ENUM_ASM_PARSERS "")
  foreach(t ${LLVM_TARGETS_TO_BUILD})