search for: i386_rhel5

Displaying 7 results from an estimated 7 matches for "i386_rhel5".

2010 Jun 25
2
[LLVMdev] libLLVMgold.so: could not load plugin library
...e is the result: ldd $LLVMPREFIX/lib/LLVMgold.so linux-gate.so.1 => (0x006fa000) libLTO.so => $LLVMPREFI/lib/libLTO.so (0x00f24000) libpthread.so.0 => /lib/libpthread.so.0 (0x00570000) libdl.so.2 => /lib/libdl.so.2 (0x00c4c000) libstdc++.so.6 => /s/gcc-4.3.1/i386_rhel5/lib/libstdc++.so.6 (0x001f0000) libm.so.6 => /lib/libm.so.6 (0x00153000) libgcc_s.so.1 => /s/gcc-4.3.1/i386_rhel5/lib/libgcc_s.so.1 (0x00675000) libc.so.6 => /lib/libc.so.6 (0x002db000) /lib/ld-linux.so.2 (0x00f07000)
2010 Jun 25
0
[LLVMdev] libLLVMgold.so: could not load plugin library
...; ldd $LLVMPREFIX/lib/LLVMgold.so >    linux-gate.so.1 =>  (0x006fa000) >    libLTO.so => $LLVMPREFI/lib/libLTO.so (0x00f24000) >    libpthread.so.0 => /lib/libpthread.so.0 (0x00570000) >    libdl.so.2 => /lib/libdl.so.2 (0x00c4c000) >    libstdc++.so.6 => /s/gcc-4.3.1/i386_rhel5/lib/libstdc++.so.6 (0x001f0000) >    libm.so.6 => /lib/libm.so.6 (0x00153000) >    libgcc_s.so.1 => /s/gcc-4.3.1/i386_rhel5/lib/libgcc_s.so.1 (0x00675000) >    libc.so.6 => /lib/libc.so.6 (0x002db000) >    /lib/ld-linux.so.2 (0x00f07000) > Looks like it found libLTO. Anothe...
2010 Jun 26
2
[LLVMdev] libLLVMgold.so: could not load plugin library
...so >> linux-gate.so.1 => (0x006fa000) >> libLTO.so => $LLVMPREFI/lib/libLTO.so (0x00f24000) >> libpthread.so.0 => /lib/libpthread.so.0 (0x00570000) >> libdl.so.2 => /lib/libdl.so.2 (0x00c4c000) >> libstdc++.so.6 => /s/gcc-4.3.1/i386_rhel5/lib/libstdc++.so.6 (0x001f0000) >> libm.so.6 => /lib/libm.so.6 (0x00153000) >> libgcc_s.so.1 => /s/gcc-4.3.1/i386_rhel5/lib/libgcc_s.so.1 (0x00675000) >> libc.so.6 => /lib/libc.so.6 (0x002db000) >> /lib/ld-linux.so.2 (0x00f07000) > Looks like i...
2010 Jun 25
0
[LLVMdev] libLLVMgold.so: could not load plugin library
On 25 June 2010 03:17, Guoliang Jin <jingl1345 at gmail.com> wrote: >  Hi there, > > I checked out the latest code from the repository, and wanna use the gold > plugin, but I got the following: > > libLLVMgold.so: could not load plugin library > > Do you know why this is happening? > > Also I noticed the name of the library is changed to LLVMgold.so, and I just
2010 Jun 25
2
[LLVMdev] libLLVMgold.so: could not load plugin library
Hi there, I checked out the latest code from the repository, and wanna use the gold plugin, but I got the following: libLLVMgold.so: could not load plugin library Do you know why this is happening? Also I noticed the name of the library is changed to LLVMgold.so, and I just renamed it to libLLVMgold.so when I copied it. Is this the right thing to do? Thanks, Guoliang
2010 Jun 26
0
[LLVMdev] libLLVMgold.so: could not load plugin library
> Did I use the wrong options? That looks correct, the issues is really why gold is failing to load the plugin. > So the gold and the LLVMgold are linked against the same libstdc++. I am > using the gcc at /s/gcc-4.3.1/i386_rhel5/bin to compile the LLVM chain. Can you run llvm-gcc again with -Wl,-debug? This will show the linker line being used. You can then run gdb on it. Try to find what error is dlopen reporting. I wonder if gold is calling perror or not when dlopen fails (assuming it is dlopen that is failing). > T...
2010 Jun 28
2
[LLVMdev] libLLVMgold.so: could not load plugin library
On 6/26/2010 10:30 AM, Rafael Espindola wrote: >> So the gold and the LLVMgold are linked against the same libstdc++. I am >> using the gcc at /s/gcc-4.3.1/i386_rhel5/bin to compile the LLVM chain. > Can you run llvm-gcc again with -Wl,-debug? This will show the linker > line being used. You can then run gdb on it. Try to find what error is > dlopen reporting. I wonder if gold is calling perror or not when > dlopen fails (assuming it is dlopen that i...