http://llvm.org/bugs/show_bug.cgi?id=21384

Heinz Wiesinger <[email protected]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|---                         |FIXED

--- Comment #1 from Heinz Wiesinger <[email protected]> ---
Ok, so the problem here was with llvm's build system not supporting libdir
properly. clang is configured to look for its resources in ../lib64 but llvm
temporarily puts it into ../lib within the build tree before we run make
install. This leads to clang not finding the resource dir when run from within
the build tree, but it works fine once installed. Patching the build system to
install things in 'Release/lib64' instead of 'Release/lib' fixed this issue for
me.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
_______________________________________________
LLVMbugs mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/llvmbugs

Reply via email to