Skip to content
  1. Aug 14, 2019
  2. Aug 09, 2019
  3. Aug 08, 2019
    • JF Bastien's avatar
      Revert "Temporarily bump minimum compiler version" · 0c0457eb
      JF Bastien authored
      It's been in for more than 30 min and no bots have complained. Let's see if some
      slow ones catch up. I'll do another manual pass on bots later (in case some that
      were down are back up), and then turn this on permanently through a regular
      review.
      
      llvm-svn: 368253
      0c0457eb
    • JF Bastien's avatar
      Temporarily bump minimum compiler version · 82ac3aca
      JF Bastien authored
      It's pretty hard to find a reliable list of which bots use which compiler version... so I'm going to commit this change which allows us to mandate the compilers required for C++14. This bump is what we've already agreed to do, so I'll use the list of failures to figure out which bots need to bump their compiler version. I'll revert the change in a few minutes.
      
      The last discussion of this is here: http://lists.llvm.org/pipermail/llvm-dev/2019-August/134360.html
      
      llvm-svn: 368252
      82ac3aca
  4. Aug 07, 2019
  5. Aug 06, 2019
    • Chris Bieneman's avatar
      Add order-dependencies to object libraries · 96655b32
      Chris Bieneman authored
      Summary: If you are generating an object library that depends on table-gen generate sources, you need the object library to depend on the tablgen target. Currently llvm_add_library doesn't add dependencies for object libraries at all, which is clearly problematic.
      
      Reviewers: compnerd, hintonda, smeenai
      
      Reviewed By: smeenai
      
      Subscribers: mgorny, llvm-commits
      
      Tags: #llvm
      
      Differential Revision: https://reviews.llvm.org/D65818
      
      llvm-svn: 368074
      96655b32
    • Hubert Tong's avatar
      [CMake] Add mapping for IBM XL -qnoeh and -qnortti · 51b0032f
      Hubert Tong authored
      Summary:
      This patch maps in the `-qnoeh` and `-qnortti` options for building with
      IBM XL compilers.
      
      Reviewers: daltenty, xingxue, jasonliu
      
      Reviewed By: daltenty
      
      Subscribers: mgorny, llvm-commits
      
      Tags: #llvm
      
      Differential Revision: https://reviews.llvm.org/D65669
      
      llvm-svn: 368050
      51b0032f
  6. Aug 05, 2019
    • Chris Bieneman's avatar
      NFC. Documenting Native tablegen dependency · cd26b1ae
      Chris Bieneman authored
      Adding documentation explaining why this dependency is required and should not be removed again.
      
      llvm-svn: 367896
      cd26b1ae
    • Chris Bieneman's avatar
      NATIVE tablegen needs to depend on target tablegen · 3c0c6e5c
      Chris Bieneman authored
      This dependency was removed in  r357486, which has lead to a stream of difficult to diagnose bugs.
      
      Without this dependency, when building with `LLVM_OPTIMIZED_TABLEGEN=On` the native tablegen executible may not be rebuilt at all, and often won't get rebuilt before targets that use the tablegen headers. In the best case this results in a build-time failure, in the worst case it results in runtime failures.
      
      llvm-svn: 367895
      3c0c6e5c
  7. Jul 31, 2019
  8. Jul 30, 2019
  9. Jul 23, 2019
  10. Jul 20, 2019
    • Daniel Sanders's avatar
      Re-commit: r366610 and r366612: Expand pseudo-components before embedding in llvm-config · 578e8fa8
      Daniel Sanders authored
      There were two main problems:
      * The 'nativecodegen' pseudo-component was unconditionally adding
        ${native_tgt}CodeGen even though it conditionally added ${native_tgt}Info and
        ${native_tgt}Desc. This has been fixed by making ${native_tgt}CodeGen
        conditional too
      * The 'all' pseudo-component was causing library names like LLVMLLVMDemangle as
        the expansion was to a library name and not a component. There doesn't seem to
        be a list of available components anywhere so this has been fixed by moving the
        expansion of 'all' back where it was before. This manifested in different ways
        on different builders but it was the same root cause
      
      llvm-svn: 366622
      578e8fa8
  11. Jul 19, 2019
  12. Jul 18, 2019
    • Nathan Lanza's avatar
      [cmake] Only run llvm-codesign if targetting apple on an apple host · 1a81d54c
      Nathan Lanza authored
      Summary:
      Other platforms don't have the capability to perform llvm_codesign
      step. If LLVM_CODESIGNING_IDENTITY is set then this chunk of code would
      attempt to codesign if the target was Apple. But when cross compiling
      to Darwin from Linux, for example, this step would fail. So test if the
      host is Apple as well.
      
      Subscribers: mgorny, llvm-commits
      
      Tags: #llvm
      
      Differential Revision: https://reviews.llvm.org/D64942
      
      llvm-svn: 366498
      1a81d54c
  13. Jul 15, 2019
    • Keno Fischer's avatar
      [cmake] Don't set install rules for tblgen if building utils is disabled · 42e90ed7
      Keno Fischer authored
      Summary:
      This is a follow up to D64032. Afterwards if building utils is disabled
      and cross compilation is attempted, CMake will complain that adding
      `install()` directives to targets with EXCLUDE_FROM_ALL set is "undefined".
      Indeed, it appears depending on the CMake version and the selected
      Generator, the install rule will error because the underlying target isn't
      built. Fix that by not adding the install rule if building utils is not
      requested. Note that this doesn't prevent building tblgen as a
      dependency in not cross-build, even if building tools is disabled.
      
      Reviewed By: smeenai
      Differential Revision: https://reviews.llvm.org/D64225
      
      llvm-svn: 366108
      42e90ed7
  14. Jul 12, 2019
  15. Jul 09, 2019
  16. Jul 08, 2019
    • Chris Bieneman's avatar
      Fix issues building libraries as more than one type with Xcode · 7023bdc4
      Chris Bieneman authored
      Summary:
      CMake+Xcode doesn't seem to handle targets that only have object
      sources. This patch works around that limitation by adding a dummy
      soruce file to any library target that is generated by llvm_add_library
      when object libraries are generated.
      
      Object libraries are generated whenever llvm_add_library is passed more
      than one library type, which is now the default case for clang static
      libraries (which generate STATIC and OBJECT libraries).
      
      Reviewers: zturner, compnerd, joanlluch
      
      Reviewed By: joanlluch
      
      Subscribers: joanlluch, xbolva00, mgorny, llvm-commits
      
      Tags: #llvm
      
      Differential Revision: https://reviews.llvm.org/D64300
      
      llvm-svn: 365365
      7023bdc4
  17. Jul 02, 2019
    • Keno Fischer's avatar
      [cmake] With utils disabled, don't build tblgen in cross mode · a7f00941
      Keno Fischer authored
      Summary:
      In cross mode, we build a separate NATIVE tblgen that runs on the
      host and is used during the build. Separately, we have a flag that
      disables building all executables in utils/. Of course generally,
      this doesn't turn off tblgen, since we need that during the build.
      In cross mode, however, that tblegen is useless since we never
      actually use it. Furthermore, it can be actively problematic if the
      cross toolchain doesn't like building executables for whatever reason.
      And even if building executables works fine, we can at least save
      compile time by omitting it from the target build. There's two changes
      needed to make this happen:
      - Stop creating a dependency from the native tool to the target tool.
        No such dependency is required for a correct build, so I'm not entirely
        sure why it was there in the first place.
      - If utils were disabled on the CMake command line and we're in cross mode,
        respect that by excluding it from the install target (using EXCLUDE_FROM_ALL).
      
      Reviewers: smeenai
      Differential Revision: https://reviews.llvm.org/D64032
      
      llvm-svn: 364872
      a7f00941
  18. Jun 27, 2019
  19. Jun 25, 2019
  20. Jun 24, 2019
  21. Jun 19, 2019
    • Stefan Granitz's avatar
      Specify log level for CMake messages (less stderr) · f2ffa732
      Stefan Granitz authored
      Summary:
      Specify message levels in CMake. Prefer STATUS (stdout).
      
      As the default message mode (i.e. level) is NOTICE in CMake, more then necessary messages get printed to stderr. Some tools,  noticably ccmake treat this as an error and require additional confirmation and re-running CMake's configuration step.
      
      This commit specifies a mode (either STATUS or WARNING or FATAL_ERROR)  instead of the default.
      
      * I used `csearch -f 'llvm-project/.+(CMakeLists\.txt|cmake)' -l 'message\("'` to find all locations.
      * Reviewers were chosen by the most common authors of specific files. If there are more suitable reviewers for these CMake changes, please let me know.
      
      Patch by: Christoph Siedentop
      
      Reviewers: zturner, beanz, xiaobai, kbobyrev, lebedev.ri, sgraenitz
      
      Reviewed By: sgraenitz
      
      Subscribers: mgorny, lebedev.ri, #sanitizers, lldb-commits, llvm-commits
      
      Tags: #sanitizers, #lldb, #llvm
      
      Differential Revision: https://reviews.llvm.org/D63370
      
      llvm-svn: 363821
      f2ffa732
  22. Jun 14, 2019
    • Saleem Abdulrasool's avatar
      build: extract LLVM distribution target handling · 2b9f6caa
      Saleem Abdulrasool authored
      This extracts the LLVM distribution target handling into a support module.
      Extraction will enable us to restructure the builds to support multiple
      distribution configurations (e.g. developer and user) to permit us to build the
      development package and the user package at once.
      
      llvm-svn: 363440
      2b9f6caa
    • Saleem Abdulrasool's avatar
      build: don't attempt to run config.guess on Windows · 2874d285
      Saleem Abdulrasool authored
      When cross-compiling LLVM to android from Windows (for LLVMSupport), we would
      attempt to execute `config.guess` to determine the host triple since
      `CMAKE_SYSTEM_NAME` is not Windows and `CMAKE_C_COMPILER` will be set to GNU or
      Clang.  This will fail as `config.guess` is a shell script which cannot be
      executed on Windows.  Simply log a warning instead.  The user can specify the
      value for this instead in those cases.
      
      llvm-svn: 363420
      2874d285
  23. Jun 07, 2019
    • David Tenty's avatar
      Build with _XOPEN_SOURCE defined on AIX · a8d13df4
      David Tenty authored
      Summary:
      It is useful to build with _XOPEN_SOURCE defined on AIX, enabling X/Open
      and POSIX compatibility mode, to work around stray macros and other
      bugs in the headers provided by the system and build compiler.
      
      This patch adds the config to cmake to build with _XOPEN_SOURCE defined
      on AIX with a few exceptions. Google Test internals require access to
      platform specific thread info constructs on AIX so in that case we build
      with _ALL_SOURCE defined instead. Libclang also uses header which needs
      _ALL_SOURCE on AIX so we leave that as is as well.
      
      We also add building on AIX with the large file API and doing CMake
      header checks with X/OPEN definitions so the results are consistent with
      the environment that will be present in the build.
      
      Reviewers: hubert.reinterpretcast, xingxue, andusy
      
      Reviewed By: hubert.reinterpretcast
      
      Subscribers: mgorny, jsji, cfe-commits, llvm-commits
      
      Tags: #llvm, #clang
      
      Differential Revision: https://reviews.llvm.org/D62533
      
      llvm-svn: 362808
      a8d13df4
  24. Jun 05, 2019
    • Stefan Granitz's avatar
      [CMake] Export CMAKE_CONFIGURATION_TYPES for the LLVM build-tree · 3c850ca5
      Stefan Granitz authored
      Summary: Useful info for standalone builds of subprojects. If a multi-configuration generator was used for the provided LLVM build-tree, standalone builds should consider actual subdirectories per configuration in `find_program()` (e.g. looking for `llvm-lit` or `llvm-tblgen`).
      
      Reviewers: labath, beanz, mgorny
      
      Subscribers: lldb-commits, llvm-commits
      
      Tags: #llvm
      
      Differential Revision: https://reviews.llvm.org/D62878
      
      llvm-svn: 362588
      3c850ca5
  25. Jun 04, 2019
  26. Jun 03, 2019
  27. Jun 02, 2019
    • Don Hinton's avatar
      [test] Fix plugin tests · ccbda6b0
      Don Hinton authored
      Recommit of r361790 that was temporarily reverted in r361793 due to bot breakage.
      
      Summary:
      The following changes were required to fix these tests:
      
      1) Change LLVM_ENABLE_PLUGINS to an option and move it to
         llvm/CMakeLists.txt with an appropriate default -- which matches
         the original default behavior.
      
      2) Move the plugins directory from clang/test/Analysis
         clang/lib/Analysis.  It's not enough to add an exclude to the
         lit.local.cfg file because add_lit_testsuites recurses the tree and
         automatically adds the appropriate `check-` targets, which don't
         make sense for the plugins because they aren't tests and don't
         have `RUN` statements.
      
         Here's a list of the `clang-check-anlysis*` targets with this
         change:
      
      ```
        $ ninja -t targets all| sed -n "s/.*\/\(check[^:]*\):.*/\1/p" | sort -u | grep clang-analysis
        check-clang-analysis
        check-clang-analysis-checkers
        check-clang-analysis-copypaste
        check-clang-analysis-diagnostics
        check-clang-analysis-engine
        check-clang-analysis-exploration_order
        check-clang-analysis-html_diagnostics
        check-clang-analysis-html_diagnostics-relevant_lines
        check-clang-analysis-inlining
        check-clang-analysis-objc
        check-clang-analysis-unified-sources
        check-clang-analysis-z3
      ```
      
      3) Simplify the logic and only include the subdirectories under
         clang/lib/Analysis/plugins if LLVM_ENABLE_PLUGINS is set.
      
      Reviewed By: NoQ
      
      Tags: #clang, #llvm
      
      Differential Revision: https://reviews.llvm.org/D62445
      
      llvm-svn: 362328
      ccbda6b0
Loading