Skip to content
  1. Jun 13, 2018
  2. Jun 12, 2018
  3. Jun 07, 2018
  4. Apr 11, 2018
    • Aaron Smith's avatar
      Revert "[cmake] Remove duplicate command line options from build" · 56e6e0d3
      Aaron Smith authored
      The Android sanitizer buildbot is failing with this change and it
      looks like an additional change to cmake is necessary to fix the 
      build. Reverting this change for now.
      
      llvm-svn: 329828
      56e6e0d3
    • Aaron Smith's avatar
      [cmake] Remove duplicate command line options from build · 112d6760
      Aaron Smith authored
      CMAKE_CXX_FLAGS was added twice to the command line. This causes the command 
      line options to be doubled which works until it doesn't as not all options 
      can be specified twice. 
      
      For example,
      
      clang-cl foo.c /GS- /GS- -mllvm -small-loop-cost=1 -mllvm -small-loop-cost=1
      clang (LLVM option parsing): for the -small-loop-cost option: may only occur zero or one times!
      
      llvm-svn: 329817
      112d6760
  5. Mar 07, 2018
  6. Jan 29, 2018
  7. Jan 27, 2018
  8. Jan 21, 2018
  9. Jan 20, 2018
    • Petr Hosek's avatar
      Revert "[Fuzzer] Parametrize add_custom_libcxx" · 81ac12d1
      Petr Hosek authored
      This reverts commit r323032: failing on the sanitizer-x86_64-linux-autoconf bot.
      
      llvm-svn: 323033
      81ac12d1
    • Petr Hosek's avatar
      [Fuzzer] Parametrize add_custom_libcxx · 94e67be1
      Petr Hosek authored
      add_custom_libcxx uses the just built compiler and installs the
      built libc++, e.g. for testing, neither of which is desirable in
      case of Fuzzer where the libc++ should be built using the host
      compiler and it's only linked into the libFuzzer and should never
      be installed. This change introduces additional arguments to
      add_custom_libcxx to allow parametrizing its behavior.
      
      Differential Revision: https://reviews.llvm.org/D42330
      
      llvm-svn: 323032
      94e67be1
  10. Jan 14, 2018
  11. Jan 11, 2018
  12. Jan 10, 2018
  13. Dec 21, 2017
  14. Dec 12, 2017
  15. Dec 01, 2017
  16. Nov 29, 2017
  17. Nov 13, 2017
  18. Sep 07, 2017
  19. Sep 02, 2017
  20. Aug 30, 2017
    • Evgeniy Stepanov's avatar
      Restore clang_rt library name on i686-android. · c6daf73c
      Evgeniy Stepanov authored
      Summary:
      Recent changes canonicalized clang_rt library names to refer to
      "i386" on all x86 targets. Android historically uses i686.
      
      This change adds a special case to keep i686 in all clang_rt
      libraries when targeting Android.
      
      Reviewers: hans, mgorny, beanz
      
      Subscribers: srhines, cfe-commits, llvm-commits
      
      Differential Revision: https://reviews.llvm.org/D37278
      
      llvm-svn: 312048
      c6daf73c
  21. Aug 22, 2017
  22. Aug 21, 2017
  23. Aug 16, 2017
    • George Karpenkov's avatar
      Quickfix to the refactoring commit: typo in the link flags variable · 4c269226
      George Karpenkov authored
      name.
      
      llvm-svn: 310973
      4c269226
    • George Karpenkov's avatar
      [sanitizers CMake] NFC Refactor the logic for compiling and generating tests · 769124dc
      George Karpenkov authored
      into a function.
      
      Most CMake configuration under compiler-rt/lib/*/tests have
      almost-the-same-but-not-quite functions of the form add_X_[unit]tests
      for compiling and running the tests.
      Much of the logic is duplicated with minor variations across different
      sub-folders.
      This can harm productivity for multiple reasons:
      
      For newcomers, resulting CMake files are very large, hard to understand,
      and hide the intention of the code.
      Changes for enabling certain architectures end up being unnecessarily
      large, as they get duplicated across multiple folders.
      Adding new sub-projects requires more effort than it should, as a
      developer has to again copy-n-paste the configuration, and it's not even
      clear from which sub-project it should be copy-n-pasted.
      With this change the logic of compile-and-generate-a-set-of-tests is
      extracted into a function, which hopefully makes writing and reading
      CMake much easier.
      
      Differential Revision: https://reviews.llvm.org/D36116
      
      llvm-svn: 310971
      769124dc
  24. Aug 15, 2017
  25. Jul 28, 2017
    • George Karpenkov's avatar
      [sanitizers] Sanitizer tests CMake clean up: try #2 · 50dd3fe9
      George Karpenkov authored
      This patch addresses two issues:
      
      Most of the time, hacks with `if/else` in order to get support for
      multi-configuration builds are superfluous.
      The variable `CMAKE_CFG_INTDIR` was created precisely for this purpose: it
      expands to `.`  on all single-configuration builds, and to a configuration
      name otherwise.
      The `if/else` hacks for the library name generation should also not be
      done, as CMake has `TARGET_FILE` generator expression precisely for this
      purpose, as it expands to the exact filename of the resulting target.
      
      Differential Revision: https://reviews.llvm.org/D35952
      
      llvm-svn: 309341
      50dd3fe9
  26. Jul 27, 2017
Loading