Issues with two versions of libstdC++.so


 
Thread Tools Search this Thread
Top Forums Programming Issues with two versions of libstdC++.so
# 8  
Old 02-20-2014
Added the missing attachments reffered in the previous post ...

Added .txt as suffix to all the attachments as .log is not into the valid list of files. They all are text essentially, without "\n".
# 9  
Old 02-20-2014
The earlier "Format error" produced due to my mistakes due to using 32-bit libstdc++.so.5 . Corrected that to link the 64-bit libstdc++.so.5 with a simplest program to print a "Hello World" message but even there the link happened for not just the version 5 which I provided but also linked some symbols to version 6 by default.

Code:
[root@p208n11 tr]# g++34 cppProg.cpp libstdc++.so.5 -o tr96

[root@p208n11 tr]# ldd tr96
        linux-vdso64.so.1 =>  (0x00000fff8d000000)
        libstdc++.so.5 => /root/tr/libstdc++.so.5 (0x00000fff8cec0000)
        libstdc++.so.6 => /usr/lib64/libstdc++.so.6 (0x0000008027d00000)
        libm.so.6 => /lib64/power6/libm.so.6 (0x0000008026290000)
        libgcc_s.so.1 => /lib64/libgcc_s.so.1 (0x0000008026d40000)
        libc.so.6 => /lib64/power6/libc.so.6 (0x0000008026030000)
        /lib64/ld64.so.1 (0x000000005d120000)
[root@p208n11 tr]# ./tr96
Hellow world
[root@p208n11 tr]# cat cppProg.cpp
#include <iostream.h>
#include <strings.h>

int
main (){

std::cout<< "Hellow world" << endl;

return 0;

}
[root@p208n11 tr]# echo $LD_LIBRARY_PATH
/root/tr
[root@p208n11 tr]# pwd
/root/tr
[root@p208n11 tr]# ll libstdc*
lrwxrwxrwx 1 root root 25 Feb 20 05:11 libstdc++.so.5 -> /usr/lib64/libstdc++.so.5


Last edited by Praveen_218; 02-20-2014 at 06:30 AM.. Reason: Removed some unwanted long messages ...
Login or Register to Ask a Question

Previous Thread | Next Thread

8 More Discussions You Might Find Interesting

1. HP-UX

Versions of HP-UX

Lo guys, I've just started a new department in work and I'm going to be using HP-UX with Vi. The problem is I'm completely new to UNIX, I'm currently learning at work but I only have limited amounts of time on our dev systems. Is it possible to get a free/educational version any where? I don't... (4 Replies)
Discussion started by: john2012
4 Replies

2. HP-UX

hpux vnc 4.1.3 libstdc++

It took me a while, but I found the right libsdc++ for the current free vnc 4.1.3, deep in this: http://mirrors.develooper.com/hpux/gcc-3.3.2-11.00.sd.bz Merijn's HP-UX software Download Section for ITRC members is a rich source for old libraries. So if you cannot find the right depot or... (0 Replies)
Discussion started by: DGPickett
0 Replies

3. UNIX for Dummies Questions & Answers

[Solved] Packages required - Libaio.so.1 - Libstdc++so.6

hi guys I have to install a software that says have theses packages are required Libaio.so.1 Libstdc++so.6 are these default packages for a Suse 11 installation for instance? or do I need to download them to avoid dependency issues thanks a lot ---------- Post updated at 10:00 PM... (0 Replies)
Discussion started by: kopper
0 Replies

4. Red Hat

Unable to find libstdc++-libc6.2-2.so.3

Hi all, I am working on Red Hat Enterprise Linux ES release 4 (Nahant) with kernel 2.6.9-5 and try to install one application but unable to install it. When I am trying to install it,it is throwing the following error-- To resolve it,I installed gcc 4.0.0 and when I am trying to see gcc... (2 Replies)
Discussion started by: smartgupta
2 Replies

5. Ubuntu

how to recover libstdc++.so.6

Hi! I'm using Ubuntu Karmic and I lost libstdc++.so.6. Is there a way to recover it?.. Thanks in advance (0 Replies)
Discussion started by: Sapfeer
0 Replies

6. AIX

libstdc++.a (libstdc++.so.5) issue on AIX 5.2

hello everybody i am new on the AIX environment and i have faced an issue while running pstill it can't find ibstdc++.a (libstdc++.so.5) although i have the latest GCC and libstdc 4.0.0 i guess. So to resolve the problem i have got an old versions that i want to install on AIX: ... (5 Replies)
Discussion started by: eternalflame
5 Replies

7. HP-UX

Is there any way to get old HP-UX versions?

I got my hands on a HP9000/380 and need a (really) old version of HP-UX, like 7 or 8. Is there any vendor who sells older versions? I did a quick search here and checked the FAQ and HPs HP-UX site but couldn't find anything. :confused: Any help is appreciated! (4 Replies)
Discussion started by: dlundh
4 Replies

8. Programming

Link against a particular version of libstdc++

Our development machines have libstdc++.so.5 and libstdc++.so.6. When we build our native code, it uses libstdc++.so.6. Is there anyway I can force it to use libstdc++.so.5 instead ? $ ldd try /usr/lib/libcwait.so (0x00655000) libstdc++.so.6 => /usr/lib/libstdc++.so.6... (5 Replies)
Discussion started by: vino
5 Replies
Login or Register to Ask a Question