[llvm] [ORC] Add automatic shared library resolver for unresolved symbols. (PR #148410)
Lang Hames via llvm-commits
llvm-commits at lists.llvm.org
Tue Sep 30 22:36:52 PDT 2025
================
@@ -0,0 +1,497 @@
+//===- LibraryResolver.h - Automatic Dynamic Library Symbol Resolution -*- C++
+//-*-===//
+//
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
+//
+//===----------------------------------------------------------------------===//
+//
+// This file provides support for automatically searching symbols across
+// dynamic libraries that have not yet been loaded.
+//
+//===----------------------------------------------------------------------===//
+
+#ifndef LLVM_EXECUTIONENGINE_ORC_TARGETPROCESS_DYNAMICLOADER_H
+#define LLVM_EXECUTIONENGINE_ORC_TARGETPROCESS_DYNAMICLOADER_H
----------------
lhames wrote:
Include guard name should match file name.
https://github.com/llvm/llvm-project/pull/148410
More information about the llvm-commits
mailing list