[llvm] a12c0d5 - [ORC] Export process symbols in lli-child-target.

Lang Hames via llvm-commits llvm-commits at lists.llvm.org
Sun Sep 26 11:28:31 PDT 2021


Author: Lang Hames
Date: 2021-09-26T11:22:49-07:00
New Revision: a12c0d5ea66a1059333b9b8ea364e9301c1413c5

URL: https://github.com/llvm/llvm-project/commit/a12c0d5ea66a1059333b9b8ea364e9301c1413c5
DIFF: https://github.com/llvm/llvm-project/commit/a12c0d5ea66a1059333b9b8ea364e9301c1413c5.diff

LOG: [ORC] Export process symbols in lli-child-target.

We want this behavior for future testing infrastructure anyway, and it may help
with the failure in https://lab.llvm.org/buildbot/#/builders/98/builds/6401:

/b/fuchsia-x86_64-linux/llvm.obj/tools/clang/stage2-bins/bin/lli: warning:
remote mcjit does not support lazy compilation
Finalization error: could not register eh-frame: __register_frame function not
found
/b/fuchsia-x86_64-linux/llvm.obj/tools/clang/stage2-bins/bin/lli: disconnecting

Added: 
    

Modified: 
    llvm/tools/lli/ChildTarget/CMakeLists.txt

Removed: 
    


################################################################################
diff  --git a/llvm/tools/lli/ChildTarget/CMakeLists.txt b/llvm/tools/lli/ChildTarget/CMakeLists.txt
index ea28756e89326..5a81faa70f014 100644
--- a/llvm/tools/lli/ChildTarget/CMakeLists.txt
+++ b/llvm/tools/lli/ChildTarget/CMakeLists.txt
@@ -11,3 +11,5 @@ add_llvm_utility(lli-child-target
   DEPENDS
   intrinsics_gen
 )
+
+export_executable_symbols(lli-child-target)


        


More information about the llvm-commits mailing list