[all-commits] [llvm/llvm-project] 70039b: [Libomptarget] Make libomptarget an LLVM library

Joseph Huber via All-commits all-commits at lists.llvm.org
Tue Jul 19 09:33:48 PDT 2022


  Branch: refs/heads/main
  Home:   https://github.com/llvm/llvm-project
  Commit: 70039be62774ae8fc53bb3b8f1bdbd2b0efb3355
      https://github.com/llvm/llvm-project/commit/70039be62774ae8fc53bb3b8f1bdbd2b0efb3355
  Author: Joseph Huber <jhuber6 at vols.utk.edu>
  Date:   2022-07-19 (Tue, 19 Jul 2022)

  Changed paths:
    M openmp/libomptarget/src/CMakeLists.txt

  Log Message:
  -----------
  [Libomptarget] Make libomptarget an LLVM library

This patch makes libomptarget depend on LLVM libraries to be built. The
reason for this is because we already have an implicit dependency on
LLVM headers for ELF identification and extraction as well as an
optional dependenly on the LLVMSupport library for time tracing
information. Furthermore, there are changes in the future that require
using more LLVM libraries, and will heavily simplify some future code as
well as open up the large amount of useful LLVM libraries to
libomptarget.

This will make "standalone" builds of `libomptarget' more difficult for
vendors wishing to ship their own. This will require a sufficiently new
version of LLVM to be installed on the system that should be picked up
by the existing handling for the implicit headers.

The things this patch changes are as follows:
  - `libomptarget.so` links against LLVMSupport and LLVMObject
  - `libomptarget.so` is a symbolic link to `libomptarget.so.15`
  - If using a shared library build, user applications will depend on LLVM
    libraries as well
  - We can now use LLVM resources in Libomptarget.

Note that this patch only changes this to apply to libomptarget itself,
not the plugins. Additional patches will be necessary for that.

Reviewed By: JonChesterfield

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




More information about the All-commits mailing list