Skip to content
  • Petr Hosek's avatar
    6fd4e7fe
    [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
    [CMake] Support CMake variables for setting target, sysroot and toolchain
    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
Loading