Skip to content
  1. Feb 27, 2014
  2. Feb 26, 2014
  3. Feb 24, 2014
  4. Feb 19, 2014
    • Alexey Samsonov's avatar
      Add rudimentary support for running compiler-rt lit tests with GCC · 31043152
      Alexey Samsonov authored
      llvm-svn: 201680
      31043152
    • Alexey Samsonov's avatar
      [CMake] Use host compiler to run lit tests in standalone mode · 8067448d
      Alexey Samsonov authored
      llvm-svn: 201674
      8067448d
    • Alexey Samsonov's avatar
      [CMake] Use host compiler to build unittests in standalone mode · 150d62aa
      Alexey Samsonov authored
      llvm-svn: 201672
      150d62aa
    • Alexey Samsonov's avatar
      [CMake] Introduce COMPILER_RT_INCLUDE_TESTS option · cd8535a9
      Alexey Samsonov authored
      llvm-svn: 201666
      cd8535a9
    • Alexey Samsonov's avatar
      [CMake] Add the way to run tests in standalone build. · aa980c76
      Alexey Samsonov authored
      1) Depend on llvm-config (configured in LLVM_CONFIG_PATH) to
      get necessary LLVM source/binary directories.
      2) Add basic support for running lit tests (check-xsan commands).
      For now this "support" is far from what we want:
        * unit tests are not built currently.
        * lit tests use Clang/compiler-rt from LLVM build directory,
          not the host compiler or just-built compiler-rt libraries.
      
      We should make a choice on the way we intend ti run compiler-rt lit testsuite:
      a) use either Clang from LLVM build tree, or the host compiler.
      b) use either just-built runtimes, or the runtimes shipped with the
      host compiler.
      
      Using just-built runtimes is tricky - we have to know where to put them, so that
      Clang/GCC driver would pick them up (and not overwrite the existing runtimes).
      Using a host compiler instead of Clang from LLVM build tree will give us a chance to
      run lit tests under GCC (which already has support for several sanitizers).
      
      That is, I tend to make the following choice: if we're in a standalone compiler-rt
      build, use host compiler with its set of runtime libraries to run lit tests.
      This will effectively decouple "make compiler-rt" and "make check-compiler-rt" in
      a standalone build - the latter wouldn't invoke the former. Note that if we decide
      to fix LLVM/Clang/compiler-rt build system so that it would configure/build
      compiler-rt with just-built Clang (as we do in Makefile-based build), this will not
      be a problem - we can add a dependency to ensure that clang/compiler-rt are rebuilt
      before running compiler-rt tests.
      
      llvm-svn: 201656
      aa980c76
    • Alexey Samsonov's avatar
      [CMake] Rudimentary support for standalone CompilerRT build system. · de4ef2a0
      Alexey Samsonov authored
      This change allows to build compiler-rt libraries separately from
      LLVM/Clang (path to LLVM build directory should be specified at
      configure time). Running tests is not yet supported.
      
      llvm-svn: 201647
      de4ef2a0
  5. Feb 18, 2014
  6. Feb 14, 2014
  7. Feb 12, 2014
  8. Feb 11, 2014
  9. Feb 10, 2014
  10. Feb 04, 2014
  11. Feb 03, 2014
  12. Jan 31, 2014
  13. Jan 30, 2014
  14. Nov 19, 2013
  15. Nov 17, 2013
    • Alexey Samsonov's avatar
      [DFSan] Don't include public headers in dfsan runtime code · 4985d527
      Alexey Samsonov authored
      Summary:
      Definitions we use in public sanitizer headers may
      slightly conflict with the ones we use in private sanitizer runtimes.
      Moreover, we generally forbid to include any system headers (like <stdint.h>)
      in sanitizer runtime headers. This leads to inevitable duplication of selected
      interface function declarations, but we decided to live with it.
      
      Reviewers: pcc
      
      Reviewed By: pcc
      
      CC: kcc, llvm-commits
      
      Differential Revision: http://llvm-reviews.chandlerc.com/D2179
      
      llvm-svn: 194955
      4985d527
  16. Nov 07, 2013
    • Alexander Potapenko's avatar
      [ASan] Add CMake configs for libclang_rt.asan_iossim_dynamic.dylib · 49034e3c
      Alexander Potapenko authored
      CMake changes to build the ASan runtime for the iOS simulator. This is a universal library targeting the same architectures as the OSX ASan runtime does, thus the iossim version can't live in the same universal libclang_rt.asan_osx_dynamic.dylib
      
      The difference between the OSX and iossim builds is in the -mios-simulator-version-min and -ios_simulator_version_min flags that tell Clang to compile and link iossim code.
      
      The iossim runtime can only be built on a machine with both Xcode and the iOS Simulator SDK installed. If xcodebuild -version -sdk iphonesimulator Path returns a nonempty path, it is used when compiling and linking the iossim runtime.
      
      llvm-svn: 194199
      49034e3c
  17. Oct 26, 2013
Loading