Skip to content
  1. Jul 04, 2014
  2. Jun 27, 2014
    • Reid Kleckner's avatar
      cmake: Don't do anything for LLVM_ENABLE_ASSERTIONS=OFF · 3260478c
      Reid Kleckner authored
      By default, CMake will set NDEBUG in Rel* builds and leave it off in
      debug builds, so we shouldn't need to do anything ourselves.
      
      Before this change, it was possible to a Debug build without assertions
      (aka Debug-Asserts in the autoconf system) by configuring with
      -DLLVM_ENABLE_ASSERTIONS=OFF, but this configuration isn't very useful.
      You can still get the same effect by explicitly adding -DNDEBUG to
      CFLAGS.
      
      Differential Revision: http://reviews.llvm.org/D4257
      
      Patch by Janusz Sobczak!
      
      llvm-svn: 211919
      3260478c
  3. May 21, 2014
  4. May 19, 2014
  5. May 06, 2014
  6. Apr 29, 2014
  7. Apr 18, 2014
    • Reid Kleckner's avatar
      Added Sphinx documentation generation to CMake build system. · 9f5eb637
      Reid Kleckner authored
      The option LLVM_ENABLE_SPHINX option enables the "docs-llvm-html",
      "docs-llvm-man" targets but does not build them by default. The
      following CMake options have been added that control what targets are
      made available
      
      SPHINX_OUTPUT_HTML
      SPHINX_OUTPUT_MAN
      
      If LLVM_BUILD_DOCS is enabled then the enabled docs-llvm-* targets will
      be built by default and if ``make install`` is run then docs-llvm-html
      and docs-llvm-man will be installed (tested on Linux only).
      
      The add_sphinx_target function is in its own file so it can be included
      by other projects that use Sphinx for their documentation.
      
      Patch by Daniel Liew <daniel.liew@imperial.ac.uk>!
      
      llvm-svn: 206655
      9f5eb637
  8. Apr 17, 2014
  9. Apr 10, 2014
  10. Mar 25, 2014
  11. Mar 16, 2014
  12. Mar 13, 2014
    • Alexey Samsonov's avatar
      [CMake] Put -Werror to CMAKE_CXX_FLAGS instead of using add_llvm_definitions() · cd083fe1
      Alexey Samsonov authored
      add_definitions shouldn't really be used for compiler flags, and the variable
      LLVM_DEFINITIONS is not appropriately used at the moment, e.g. it's not exported
      to LLVMConfig.cmake
      
      llvm-svn: 203792
      cd083fe1
    • Ted Kremenek's avatar
      [CMake] Enable a bunch of Xcode build settings that correspond to warnings... · 68af8456
      Ted Kremenek authored
      [CMake] Enable a bunch of Xcode build settings that correspond to warnings that are for the most part enabled by default either by Clang or -Wall.
      
      I personally build with these settings enabled all the time, and it
      is clearer to see the actual warning flags (e.g., -Wuninitialized)
      get passed by Xcode rather than seeing -Wno-uninitialized followed
      by -Wall (the latter canceling out the former) and figuring out
      what is going on.
      
      Xcode will ignore build settings it doesn't understand, so this will
      work on possibly older versions of Xcode that don't support all
      of these settings.
      
      llvm-svn: 203760
      68af8456
  13. Mar 12, 2014
  14. Mar 04, 2014
  15. Mar 01, 2014
  16. Feb 28, 2014
  17. Feb 26, 2014
  18. Feb 23, 2014
    • NAKAMURA Takumi's avatar
      TableGen.cmake: Functionalize and reformat. · d93593fd
      NAKAMURA Takumi authored
      llvm-svn: 201972
      d93593fd
    • NAKAMURA Takumi's avatar
      Simplify linking to system libraries · af2c1130
      NAKAMURA Takumi authored
      The LLVMSupport library implementation consolidates all dependencies on
      system libraries.  Move the logic gathering system libraries out of
      'cmake/modules/LLVM-Config.cmake' and into 'lib/Support/CMakeLists.txt'.
      Use the target_link_libraries() command there to tell CMake about the
      link dependencies of the LLVMSupport implementation.  CMake will
      automatically propagate this to all targets that link LLVMSupport
      directly or indirectly.
      
      We still need to build knowledge of system library dependencies into
      'llvm-config'.  Store the list of libraries needed in a property on
      LLVMSupport and teach 'tools/llvm-config/CMakeLists.txt' to retrieve it
      from there.
      
      Drop all calls to 'link_system_libs' and 'get_system_libs' from our
      CMake code.  Replace their implementations with a warning that explains
      the calls are no longer necessary.  Also drop from 'LLVMConfig.cmake'
      the HAVE_* and related variables that were published there only to allow
      'get_system_libs' to run outside our build process.
      
      Contributed by Brad King.
      
      llvm-svn: 201969
      af2c1130
  19. Feb 22, 2014
  20. Feb 21, 2014
  21. Feb 20, 2014
  22. Feb 16, 2014
  23. Feb 13, 2014
  24. Feb 12, 2014
    • NAKAMURA Takumi's avatar
      Teach tablegen() macro to check needed variables · 04817e49
      NAKAMURA Takumi authored
      This macro depends on several variables to be set in the calling
      context.  Check them and report an error if they are not set.
      Without this, custom commands may be silently specified that
      will fail at build time.
      
      Patch by Brad King.
      
      llvm-svn: 201229
      04817e49
Loading