https://bugs.llvm.org/show_bug.cgi?id=50565

Michael Kruse <l...@meinersbur.de> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
                 CC|                            |l...@meinersbur.de
         Resolution|---                         |INVALID

--- Comment #1 from Michael Kruse <l...@meinersbur.de> ---
Thanks for the report.

The error means you have an LLVM library (in this case: LLVMPolly) linked more
than once into the address space. For instance, once statically linked into
opt, and once more using `-load LLVMPolly.so`.

The solution is to not add `-load LLVMPolly.so` to the command line: It is
already statically linked in your `opt` executable (due to using the build
option `LLVM_POLLY_LINK_INTO_TOOLS=ON` when building LLVM).

-- 
You are receiving this mail because:
You are on the CC list for the bug.
_______________________________________________
llvm-bugs mailing list
llvm-bugs@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs

Reply via email to