[llvm] [cmake] Silence GNUInstallDirs warning in LLVMInstallSymlink
authorMichał Górny <mgorny@gentoo.org>
Mon, 24 Oct 2022 04:58:55 +0000 (06:58 +0200)
committerMichał Górny <mgorny@gentoo.org>
Fri, 28 Oct 2022 06:49:26 +0000 (08:49 +0200)
Set a dummy CMAKE_INSTALL_LIBDIR in order to silence the following CMake
warning when executing LLVMInstallSymlink.cmake script:

    CMake Warning (dev) at /usr/share/cmake/Modules/GNUInstallDirs.cmake:243 (message):
      Unable to determine default CMAKE_INSTALL_LIBDIR directory because no
      target architecture is known.  Please enable at least one language before
      including GNUInstallDirs.
    Call Stack (most recent call first):
      /usr/lib/llvm/16/lib64/cmake/llvm/LLVMInstallSymlink.cmake:5 (include)
      tools/lld/cmake_install.cmake:66 (include)
      cmake_install.cmake:52 (include)

Differential Revision: https://reviews.llvm.org/D136573

llvm/cmake/modules/LLVMInstallSymlink.cmake

index e9be04a..274cef6 100644 (file)
@@ -2,6 +2,9 @@
 # DESTDIR environment variable may be unset at configuration time.
 # See PR8397.
 
+# Set to an arbitrary directory to silence GNUInstallDirs warnings
+# regarding being unable to determine libdir.
+set(CMAKE_INSTALL_LIBDIR "lib")
 include(GNUInstallDirs)
 
 function(install_symlink name target outdir)