Skip to content
  1. Jul 20, 2020
    • Logan Smith's avatar
      Enable -Wsuggest-override in the LLVM build · 8b16e45f
      Logan Smith authored
      This patch adds Clang's new (and GCC's old) -Wsuggest-override to the warning flags for the LLVM build. The warning is a stronger form of -Winconsistent-missing-override which warns _everywhere_ that override is missing, not just in places where it's inconsistent within a class.
      
      Some directories in the monorepo need the warning disabled for compatibility's, or sanity's, sake; in particular, libcxx/libcxxabi, and any code implementing or interoperating with googletest, googlemock, or google benchmark (which do not themselves use override). This patch adds -Wno-suggest-override to the relevant CMakeLists.txt's to accomplish this.
      
      Differential Revision: https://reviews.llvm.org/D84126
      8b16e45f
  2. Jul 16, 2020
  3. Jul 09, 2020
    • Louis Dionne's avatar
      [runtimes] Allow passing Lit parameters through CMake · 6f69318c
      Louis Dionne authored
      This allows passing parameters to the test suites without using
      LLVM_LIT_ARGS. The problem is that we sometimes want to set some
      Lit arguments on the CMake command line, but the Lit parameters in
      a CMake cache file. If the only knob to do that is LLVM_LIT_ARGS,
      the command-line entry overrides the cache one, and the parameters
      set by the cache are ignored.
      
      This fixes a current issue with the build bots that they completely
      ignore the 'std' param set by Lit, because other Lit arguments are
      provided via LLVM_LIT_ARGS on the CMake command-line.
      6f69318c
  4. Jul 03, 2020
    • Louis Dionne's avatar
      [libc++/libc++abi] Automatically detect whether exceptions are enabled · 71d88ceb
      Louis Dionne authored
      Instead of detecting it automatically (in libc++) and relying on
      _LIBCXXABI_NO_EXCEPTIONS being set explicitly (in libc++abi), always
      detect whether exceptions are enabled automatically.
      
      This commit also removes support for specifying -D_LIBCPP_NO_EXCEPTIONS
      and -D_LIBCXXABI_NO_EXCEPTIONS explicitly -- those should just be inferred
      from using -fno-exceptions (or an equivalent flag).
      
      Allowing both -D_FOO_NO_EXCEPTIONS to be provided explicitly and trying
      to detect it automatically is just confusing, especially since we did
      specify it explicitly when building libc++abi. We should have only one
      way to detect whether exceptions are enabled, but it should be robust.
      71d88ceb
  5. Jun 25, 2020
  6. Jun 15, 2020
  7. Jun 11, 2020
  8. Apr 22, 2020
    • Louis Dionne's avatar
      [libc++/abi] Provide an option to turn on forgiving dynamic_cast when building libc++abi · e5291c4a
      Louis Dionne authored
      Instead of the ad-hoc #define _LIBCXX_DYNAMIC_FALLBACK, provide an option
      to enable the setting when building libc++abi. Also use the occasion to
      rename the option to something slightly more descriptive.
      
      Note that in the future, it would be great to simply remove this option
      altogether. However, in the meantime, it seems better to have it be an
      official option than something ad-hoc.
      e5291c4a
  9. Apr 02, 2020
  10. Mar 30, 2020
    • Louis Dionne's avatar
      Enforce that libc++ and libc++abi are built in a monorepo layout · 19aec8c9
      Louis Dionne authored
      We will soon start removing technical debt and sharing code between the
      two directories, so this first step is meant to discover potential places
      where the libraries are built outside of a monorepo layout. I imagine
      this could happen as a remnant of the pre-monorepo setup.
      
      This was discussed on the libcxx-dev mailing list and we got overall
      consensus on the direction. All consumers of libc++ and libc++abi
      should already be doing so through the monorepo, however it is
      possible that we catch some stragglers with this patch, in which
      case it may need to be reverted temporarily.
      
      Differential Revision: https://reviews.llvm.org/D76102
      19aec8c9
  11. Mar 12, 2020
  12. Jan 30, 2020
  13. Jan 09, 2020
  14. Dec 02, 2019
  15. Nov 12, 2019
  16. Oct 07, 2019
  17. Jul 12, 2019
  18. May 30, 2019
    • Petr Hosek's avatar
      [runtimes] Check if pragma comment(lib, ...) is supported first · 789b7f08
      Petr Hosek authored
      This fixes the issue introduced by r362048 where we always use
      pragma comment(lib, ...) for dependent libraries when the compiler
      is Clang, but older Clang versions don't support this pragma so
      we need to check first if it's supported before using it.
      
      llvm-svn: 362055
      789b7f08
  19. May 22, 2019
    • Petr Hosek's avatar
      [runtimes] Move libunwind, libc++abi and libc++ to lib/$target/c++ and include/c++ · 81f433b4
      Petr Hosek authored
      This change is a consequence of the discussion in "RFC: Place libs in
      Clang-dedicated directories", specifically the suggestion that
      libunwind, libc++abi and libc++ shouldn't be using Clang resource
      directory. Tools like clangd make this assumption, but this is
      currently not true for the LLVM_ENABLE_PER_TARGET_RUNTIME_DIR build.
      This change addresses that by moving the output of these libraries to
      lib/$target/c++ and include/c++ directories, leaving resource directory
      only for compiler-rt runtimes and Clang builtin headers.
      
      Differential Revision: https://reviews.llvm.org/D59168
      
      llvm-svn: 361432
      81f433b4
  20. May 02, 2019
    • Petr Hosek's avatar
      [gn] Support for building libcxxabi · 4fe63c70
      Petr Hosek authored
      This change introduces support for building libcxxabi. The library
      build should be complete, but not all CMake options have been
      replicated in GN. We also don't support tests yet.
      
      We only support two stage build at the moment.
      
      Differential Revision: https://reviews.llvm.org/D60372
      
      llvm-svn: 359805
      4fe63c70
  21. Apr 03, 2019
  22. Mar 08, 2019
  23. Feb 17, 2019
    • Jonas Hahnfeld's avatar
      [compiler-rt] Build custom libcxx with libcxxabi · 66c60d9d
      Jonas Hahnfeld authored
      This changes add_custom_libcxx to also build libcxxabi and merges
      the two into a static and hermetic library.
      There are multiple advantages:
      1) The resulting libFuzzer doesn't expose C++ internals and looks
         like a plain C library.
      2) We don't have to manually link in libstdc++ to provide cxxabi.
      3) The sanitizer tests cannot interfere with an installed version
         of libc++.so in LD_LIBRARY_PATH.
      
      Differential Revision: https://reviews.llvm.org/D58013
      
      llvm-svn: 354212
      66c60d9d
  24. Feb 12, 2019
    • Petr Hosek's avatar
      [CMake] Avoid passing -rtlib=compiler-rt when using compiler-rt · 5300d841
      Petr Hosek authored
      We build libc++ and libc++abi with -nodefaultlibs, so -rtlib=compiler-rt
      has no effect and results in an 'argument unused during compilation'
      warning which breaks the build when using -Werror. We can therefore drop
      -rtlib=compiler-rt without any functional change; note that the actual
      compiler-rt linking is handled by HandleCompilerRT.
      
      Differential Revision: https://reviews.llvm.org/D58084
      
      llvm-svn: 353786
      5300d841
  25. Feb 04, 2019
    • Petr Hosek's avatar
      [CMake] Support CMake variables for setting target, sysroot and toolchain · 6fd4e7fe
      Petr Hosek authored
      CMake has a standard way of setting target triple, sysroot and external
      toolchain through CMAKE_<LANG>_COMPILER_TARGET, CMAKE_SYSROOT and
      CMAKE_<LANG>_COMPILER_EXTERNAL_TOOLCHAIN. These are turned into
      corresponding --target=, --sysroot= and --gcc-toolchain= variables add
      included appended to CMAKE_<LANG>_FLAGS.
      
      libunwind, libc++abi, libc++ provides their own mechanism through
      <PROJECT>_TARGET_TRIPLE, <PROJECT>_SYSROOT and <PROJECT>_GCC_TOOLCHAIN
      variables. These are also passed to lit via lit.site.cfg, and lit config
      uses these to set the corresponding compiler flags when building tessts.
      
      This means that there are two different ways of setting target, sysroot
      and toolchain, but only one is properly supported in lit. This change
      extends CMake build for libunwind, libc++abi and libc++ to also support
      the CMake variables in addition to project specific ones in lit.
      
      Differential Revision: https://reviews.llvm.org/D57670
      
      llvm-svn: 353084
      6fd4e7fe
  26. Jan 24, 2019
    • Petr Hosek's avatar
      [libcxxabi] Support building hermetic static library · 8807db32
      Petr Hosek authored
      This is useful when the static libc++abi library is being linked into
      shared libraries that may be used in with other shared libraries that
      use different C++ library. We want to avoid avoid exporting libc++abi
      or libc++ symbols in those cases. This achieved by a new CMake option
      which can be enabled by libc++abi vendors as needed.
      
      Differential Revision: https://reviews.llvm.org/D56026
      
      llvm-svn: 352017
      8807db32
  27. Jan 16, 2019
  28. Aug 01, 2018
  29. Jul 26, 2018
    • Sam Clegg's avatar
      [CMake] Don't use LIBCXXABI_ENABLE_STATIC option before its declared · 77c99ee5
      Sam Clegg authored
      Summary:
      rL337867 introduced two new cmake_dependent_option options:
      - LIBCXXABI_INSTALL_STATIC_LIBRARY
      - LIBCXXABI_INSTALL_SHARED_LIBRARY
      
      They depend on LIBCXXABI_ENABLE_STATIC and LIBCXXABI_ENABLE_SHARED
      and so therefore need to (it seems) come after the declaration of
      these two options.
      
      Subscribers: mgorny, aheejin, christof, ldionne, cfe-commits
      
      Differential Revision: https://reviews.llvm.org/D49825
      
      llvm-svn: 337982
      77c99ee5
  30. Jul 25, 2018
  31. Jul 24, 2018
  32. Jul 23, 2018
  33. Jul 10, 2018
  34. Jun 30, 2018
    • Shoaib Meenai's avatar
      [libc++abi] Look for __config instead of vector · 51d5cc92
      Shoaib Meenai authored
      vector is a generic C++ header, whereas __config is libc++-specific, so
      we can look for it instead to guarantee we're finding a libc++
      installation. This was suggested by Eric in https://reviews.llvm.org/D48694.
      
      This is less important now that we're limiting the header search to the
      specified directories (which definitely shouldn't have any other C++
      library's headers anyway), but it shouldn't hurt either. There's a
      chance some other library could also be providing a __config header, so
      there's still a trade-off there. It would be ideal if we could check for
      the presence of both __config and vector in the same directory, but
      there doesn't seem to be any easy way to do that in CMake.
      
      llvm-svn: 336034
      51d5cc92
    • Shoaib Meenai's avatar
      [libc++abi] Limit libc++ header search to specified paths · 777ec376
      Shoaib Meenai authored
      Right now, when libc++abi is locating libc++ headers, it specifies
      several search locations, but it also doesn't prevent CMake from looking
      for those headers in system directories. I don't know if this was
      intentional or an oversight, but it has several issues:
      
      * We're looking specifically for the vector header, which could just as
        easily be found in a libstdc++ (or other C++ library) installation.
      * No system I know of places their C++ headers directly in system
        include directories (they're always under a C++ subdirectory), so the
        system search will never succeed.
      * find_path searches system paths before the user-specified PATHS, so
        if some system does happen to have C++ headers in its system include
        directories, those headers will be preferred, which doesn't seem
        desirable.
      
      It makes sense to me to limit this header search to the explicitly
      specified paths (using NO_DEFAULT_PATH, as is done for the other
      find_path call in this file), but I'm putting it up for review in case
      there's some use case I'm not thinking of.
      
      Differential Revision: https://reviews.llvm.org/D48694
      
      llvm-svn: 336032
      777ec376
  35. Jun 28, 2018
    • Petr Hosek's avatar
      Support for multiarch runtimes layout · 887f26d4
      Petr Hosek authored
      This change adds a support for multiarch style runtimes layout, so in
      addition to the existing layout where runtimes get installed to:
      
      lib/clang/$version/lib/$os
      
      Clang now allows runtimes to be installed to:
      
      lib/clang/$version/$target/lib
      
      This also includes libc++, libc++abi and libunwind; today those are
      assumed to be in Clang library directory built for host, with the
      new layout it is possible to install libc++, libc++abi and libunwind
      into the runtime directory built for different targets.
      
      The use of new layout is enabled by setting the
      LLVM_ENABLE_RUNTIME_TARGET_DIR CMake variable and is supported by both
      projects and runtimes layouts. The runtimes CMake build has been further
      modified to use the new layout when building runtimes for multiple
      targets.
      
      Differential Revision: https://reviews.llvm.org/D45604
      
      llvm-svn: 335809
      887f26d4
  36. Apr 30, 2018
    • Nico Weber's avatar
      Move _LIBCPP_ENABLE_CXX17_REMOVED_UNEXPECTED_FUNCTIONS macro to build system · 297ec32b
      Nico Weber authored
      _LIBCPP_ENABLE_CXX17_REMOVED_UNEXPECTED_FUNCTIONS is currently used to
      bring back std::unexpected, which is removed in C++17, but still needed
      for libc++abi for backward compatibility.
      
      This macro used to define in cxa_exception.cpp only, but actually
      needed for all sources that touches exceptions.
      So, a build-system-level macro is better fit to define this macro.
      
      https://reviews.llvm.org/D46056
      Patch from Taiju Tsuiku <tzik@chromium.org>!
      
      llvm-svn: 331150
      297ec32b
Loading