Displaying 2 results from an estimated 2 matches for "with_ld_library_path".
2014 Jul 30
2
[LLVMdev] [3.5 Release] Release Candidate 1 Sources and Binaries Available
...;
> g++ hello_world.cpp
> ./a.out
> Hello World!
> ldd a.out | grep libstdc++
> libstdc++.so.6 => /usr/lib/x86_64-linux-gnu/libstdc++.so.6
> (0x00002b30fdb04000)
> chrpath -l a.out
> a.out: no rpath or runpath tag found.
> make: [chrpath] Error 2 (ignored)
> ldd ./with_LD_LIBRARY_PATH/Release+Asserts/bin/llvm-tblgen | grep libstdc++
> ./with_LD_LIBRARY_PATH/Release+Asserts/bin/llvm-tblgen:
> /usr/lib/x86_64-linux-gnu/libstdc++.so.6: version `GLIBCXX_3.4.20' not
> found (required by ./with_LD_LIBRARY_PATH/Release+Asserts/bin/llvm-tblgen)
> libstdc++.so.6 => /u...
2014 Jul 30
2
[LLVMdev] [3.5 Release] Release Candidate 1 Sources and Binaries Available
On Wednesday, July 30, 2014 01:31 PM, Ben Pope wrote:
> ldd your_built_clang | grep libstdc++
> chrpath -l your_built_clang
Hmm, where "your_built_clang" should be the actual failing executable:
/home/evansl/dwnlds/llvm/3.5rc1/build/Release+Asserts/bin/llvm-tblgen
Ben