Skip to content
  1. Jul 04, 2014
  2. May 21, 2014
  3. Apr 10, 2014
  4. Mar 04, 2014
  5. Feb 28, 2014
  6. Feb 26, 2014
  7. Feb 22, 2014
  8. Feb 21, 2014
  9. Feb 13, 2014
  10. Feb 10, 2014
    • NAKAMURA Takumi's avatar
      [CMake] LLVMSupport should be responsible to provide system_libs. · 2f96171c
      NAKAMURA Takumi authored
      llvm-svn: 201077
      2f96171c
    • NAKAMURA Takumi's avatar
      [CMake] Introduce llvm_add_library(). · e7038dfe
      NAKAMURA Takumi authored
        - MODULE;SHARED;STATIC
            STATIC by default w/o BUILD_SHARED_LIBS.
            SHARED by default w/  BUILD_SHARED_LIBS.
        - OUTPUT_NAME name
            Corresponds to OUTPUT_NAME in target properties.
        - DEPENDS targets...
            Same semantics as add_dependencies().
        - LINK_COMPONENTS components...
            Same as the variable LLVM_LINK_COMPONENTS.
        - LINK_LIBS lib_targets...
            Same semantics as target_link_libraries().
        - ADDITIONAL_HEADERS (implemented in LLVMProcessSources)
            May specify header files for IDE generators.
      
      I suggest llvm_add_library() may be used for inter-project add_library stuff
      and also suggest add_***_library() may be used project-specific.
      
      Please be patient that llvm_add_library might be ambiguous against add_llvm_library.
      
      llvm-svn: 201072
      e7038dfe
  11. Feb 09, 2014
    • NAKAMURA Takumi's avatar
      Export lib and exe build target names from build tree · 8faf6609
      NAKAMURA Takumi authored
      Record every logical target that we install with install(TARGETS) in a
      global LLVM_EXPORTS property.  Then use the export(TARGETS) command to
      provide a "LLVMExports.cmake" file that exports logical targets for
      import into applications directly from our build tree.
      
      The "LLVMExports.cmake" file is not meant for direct inclusion by
      application code but should be included by "LLVMConfig.cmake" in a
      future change.
      
      Contributed by Brad King.
      
      llvm-svn: 201050
      8faf6609
    • NAKAMURA Takumi's avatar
      Export lib and exe build target names from install tree · ef976071
      NAKAMURA Takumi authored
      Use the install(TARGETS) command EXPORT option for every library and
      executable that we install with LLVM.  Then use the install(EXPORT)
      command to provide a "LLVMExports.cmake" file that exports logical
      targets for import into applications from our install tree.
      
      The "LLVMExports.cmake" file is not meant for direct inclusion by
      application code but should be included by "LLVMConfig.cmake" in a
      future change.
      
      Contributed by Brad King.
      
      llvm-svn: 201049
      ef976071
  12. Feb 04, 2014
  13. Jan 31, 2014
  14. Jan 30, 2014
  15. Jan 28, 2014
    • NAKAMURA Takumi's avatar
      [CMake] llvm_update_compile_flags(name) doesn't require source files. TARGET... · b524c222
      NAKAMURA Takumi authored
      [CMake] llvm_update_compile_flags(name) doesn't require source files. TARGET PROPERTY SOURCES has them.
      
      llvm-svn: 200311
      b524c222
    • NAKAMURA Takumi's avatar
      [CMake] Enhance llvm_update_compile_flags(name sources) to handle... · a679f43f
      NAKAMURA Takumi authored
      [CMake] Enhance llvm_update_compile_flags(name sources) to handle LLVM_REQUIRES_EH and LLVM_REQUIRES_RTTI.
      
      LLVM_REQUIRES_EH implies LLVM_REQUIRES_RTTI. It is as same behavior as Makefile.rule's.
      llvm/examples/ExceptionDemo is affected. (It was built with -fno-rtti.)
      
      For MSVC, Remove flags like "/EHsc /GR" in HandleLLVMOptions, or CL.EXE complains with flags like "/GR /GR-".
      
      llvm_update_compile_flags() updates source file property if the target contains *.c.
      COMPILE_FLAGS in target properties affects both C++ and C!
      
      LLVM_NO_RTTI is deprecated. It was introduced by me and was my mistake.
      
      llvm-svn: 200301
      a679f43f
    • NAKAMURA Takumi's avatar
      [CMake] Move -ffunction-data-sections stuff to HandleLLVMOptions. · bb50bceb
      NAKAMURA Takumi authored
      With this tweaks, also unittests are compiled with -ffunction-sections.
      
      It's hard to control contextual CMAKE_CXX_FLAGS. We should get rid of twiddling it as possible.
      
      llvm-svn: 200299
      bb50bceb
  16. Jan 27, 2014
  17. Jan 26, 2014
  18. Jan 19, 2014
  19. Jan 16, 2014
    • Quentin Colombet's avatar
      [cmake] Attempt to fix sanitizer buildbot. · cb2ae8d8
      Quentin Colombet authored
      The generation of the native_export_file end up in
      several different makefiles. All those makefiles
      write the same file, but can be executed concurrently...
      and bad things happen!
      
      llvm-svn: 199356
      cb2ae8d8
  20. Jan 08, 2014
    • Alp Toker's avatar
      CMake: Provide LLVM_PLUGIN_EXT definition · c0b7bb56
      Alp Toker authored
      This is needed to support the addition of tests for clang loadable plugins.
      
      In clang, plugins are built as modules (bundles on OS X) rather than dynamic
      libraries (dylib) so the build system needs to inform lit of the actual
      file extension in use, typically '.so' on Unix and '.dll' on Windows.
      
      (LLVM itself should probably switch to this scheme to fix PR14903 once and for
      all.)
      
      No change in build output or functionality intended.
      
      llvm-svn: 198746
      c0b7bb56
  21. Jan 07, 2014
  22. Jan 05, 2014
  23. Jan 02, 2014
  24. Dec 30, 2013
    • NAKAMURA Takumi's avatar
      [CMake][VS][XCode] Restruct the output directory layout more comfortable,... · baa9f533
      NAKAMURA Takumi authored
      [CMake][VS][XCode] Restruct the output directory layout more comfortable, ${BINARY_DIR}/${BUILD_MODE}/(bin|lib)
      
      We have been seeing nasty directory layout with CMake multiconfig, such as,
        bin/Release/clang.exe
        lib/clang/3.x/...
        lib/Release/clang/3.x/.. (duplicated)
      
      Move the layout similar to autoconf's;
        Release/bin/clang.exe
        Release/lib/clang/3.x/...
      
      Checked on Visual Studio 10. Could you guys please confirm my change on XCode(and other multiconfig builders)?
      
      Note: Don't set variables CMAKE_*_OUTPUT_DIRECTORY any more, or a certain builder, for eaxample, msbuild.exe, would be confused.
      llvm-svn: 198205
      baa9f533
    • Yaron Keren's avatar
      Visual C++ does not support -ffunction-sections -fdata-sections. · 03759bd9
      Yaron Keren authored
       
      
      llvm-svn: 198203
      03759bd9
Loading