Sponsored Content
Top Forums Programming Issues with two versions of libstdC++.so Post 302889235 by Praveen_218 on Thursday 20th of February 2014 01:04:59 AM
Old 02-20-2014
Quote:
Originally Posted by Corona688
LD_LIBRARY_PATH doesn't work that way... Give it an absolute path, and only one path.
Sure Corona, I'll try his again tomorrow morning and update you.

---------- Post updated at 11:34 AM ---------- Previous update was at 12:03 AM ----------

Hi Corona,
Didn't work for me or did I do some mistakes? Here is the combined output for a sample program compilation:

Code:
[root@p208n11 tr]# ll
total 148
-rwxr-xr-x 1 root root 11055 Feb 18 02:21 a.out
-rw-r--r-- 1 root root   108 Feb 18 02:23 cppProg.cpp
-rw-r--r-- 1 root root 59512 Feb 18 04:11 ldLib.log
-rw-r--r-- 1 root root 59512 Feb 18 04:18 ldLib.log.2
lrwxrwxrwx 1 root root    23 Feb 18 04:23 libstdc++.so -> /usr/lib/libstdc++.so.5
-rwxr-xr-x 1 root root 11055 Feb 18 02:22 og++34Comp
-rw-r--r-- 1 root root     0 Feb 20 00:14 strace.log
[root@p208n11 tr]# strace g++34 libstdc++.so cppProg.cpp -o trcpp2 2> strace.log
[root@p208n11 tr]# ll
total 196
-rwxr-xr-x 1 root root 11055 Feb 18 02:21 a.out
-rw-r--r-- 1 root root   108 Feb 18 02:23 cppProg.cpp
-rw-r--r-- 1 root root 59512 Feb 18 04:11 ldLib.log
-rw-r--r-- 1 root root 59512 Feb 18 04:18 ldLib.log.2
lrwxrwxrwx 1 root root    23 Feb 18 04:23 libstdc++.so -> /usr/lib/libstdc++.so.5
-rwxr-xr-x 1 root root 11055 Feb 18 02:22 og++34Comp
-rw-r--r-- 1 root root 47687 Feb 20 00:15 strace.log
[root@p208n11 tr]# cat cppProg.cpp
#include <iostream.h>
#include <strings.h>

int
main (){

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

return 0;

}
[root@p208n11 tr]#
[root@p208n11 tr]# g++34 lstdc++.so cppProg.cpp -o trcpp2
g++34: lstdc++.so: No such file or directory
In file included from /usr/lib/gcc/ppc64-redhat-linux/3.4.6/../../../../include/c++/3.4.6/backward/iostream.h:31,
                 from cppProg.cpp:1:
/usr/lib/gcc/ppc64-redhat-linux/3.4.6/../../../../include/c++/3.4.6/backward/backward_warning.h:32:2: warning: #warning This file includes at least one deprecated or antiquated header. Please consider using one of the 32 headers found in section 17.4.1.2 of the C++ standard. Examples include substituting the <X> header for the <X.h> header for C++ includes, or <iostream> instead of the deprecated header <iostream.h>. To disable this warning use -Wno-deprecated.
[root@p208n11 tr]# ll
total 172
-rwxr-xr-x 1 root root 11055 Feb 18 02:21 a.out
-rw-r--r-- 1 root root   108 Feb 18 02:23 cppProg.cpp
-rw-r--r-- 1 root root 59512 Feb 18 04:11 ldLib.log
-rw-r--r-- 1 root root 59512 Feb 18 04:18 ldLib.log.2
lrwxrwxrwx 1 root root    23 Feb 18 04:23 libstdc++.so -> /usr/lib/libstdc++.so.5
-rwxr-xr-x 1 root root 11055 Feb 18 02:22 og++34Comp
-rw-r--r-- 1 root root 21159 Feb 20 00:19 strace.log
[root@p208n11 tr]# g++34 lstdc++ cppProg.cpp -o trcpp2
g++34: lstdc++: No such file or directory
In file included from /usr/lib/gcc/ppc64-redhat-linux/3.4.6/../../../../include/c++/3.4.6/backward/iostream.h:31,
                 from cppProg.cpp:1:
/usr/lib/gcc/ppc64-redhat-linux/3.4.6/../../../../include/c++/3.4.6/backward/backward_warning.h:32:2: warning: #warning This file includes at least one deprecated or antiquated header. Please consider using one of the 32 headers found in section 17.4.1.2 of the C++ standard. Examples include substituting the <X> header for the <X.h> header for C++ includes, or <iostream> instead of the deprecated header <iostream.h>. To disable this warning use -Wno-deprecated.
[root@p208n11 tr]# ll
total 172
-rwxr-xr-x 1 root root 11055 Feb 18 02:21 a.out
-rw-r--r-- 1 root root   108 Feb 18 02:23 cppProg.cpp
-rw-r--r-- 1 root root 59512 Feb 18 04:11 ldLib.log
-rw-r--r-- 1 root root 59512 Feb 18 04:18 ldLib.log.2
lrwxrwxrwx 1 root root    23 Feb 18 04:23 libstdc++.so -> /usr/lib/libstdc++.so.5
-rwxr-xr-x 1 root root 11055 Feb 18 02:22 og++34Comp
-rw-r--r-- 1 root root 21159 Feb 20 00:19 strace.log
[root@p208n11 tr]# g++34 lstdc cppProg.cpp -o trcpp2
g++34: lstdc: No such file or directory
In file included from /usr/lib/gcc/ppc64-redhat-linux/3.4.6/../../../../include/c++/3.4.6/backward/iostream.h:31,
                 from cppProg.cpp:1:
/usr/lib/gcc/ppc64-redhat-linux/3.4.6/../../../../include/c++/3.4.6/backward/backward_warning.h:32:2: warning: #warning This file includes at least one deprecated or antiquated header. Please consider using one of the 32 headers found in section 17.4.1.2 of the C++ standard. Examples include substituting the <X> header for the <X.h> header for C++ includes, or <iostream> instead of the deprecated header <iostream.h>. To disable this warning use -Wno-deprecated.
[root@p208n11 tr]# ll
total 172
-rwxr-xr-x 1 root root 11055 Feb 18 02:21 a.out
-rw-r--r-- 1 root root   108 Feb 18 02:23 cppProg.cpp
-rw-r--r-- 1 root root 59512 Feb 18 04:11 ldLib.log
-rw-r--r-- 1 root root 59512 Feb 18 04:18 ldLib.log.2
lrwxrwxrwx 1 root root    23 Feb 18 04:23 libstdc++.so -> /usr/lib/libstdc++.so.5
-rwxr-xr-x 1 root root 11055 Feb 18 02:22 og++34Comp
-rw-r--r-- 1 root root 21159 Feb 20 00:19 strace.log
[root@p208n11 tr]# g++34 cppProg.cpp -o trcpp2
In file included from /usr/lib/gcc/ppc64-redhat-linux/3.4.6/../../../../include/c++/3.4.6/backward/iostream.h:31,
                 from cppProg.cpp:1:
/usr/lib/gcc/ppc64-redhat-linux/3.4.6/../../../../include/c++/3.4.6/backward/backward_warning.h:32:2: warning: #warning This file includes at least one deprecated or antiquated header. Please consider using one of the 32 headers found in section 17.4.1.2 of the C++ standard. Examples include substituting the <X> header for the <X.h> header for C++ includes, or <iostream> instead of the deprecated header <iostream.h>. To disable this warning use -Wno-deprecated.
[root@p208n11 tr]# ll
total 184
-rwxr-xr-x 1 root root 11055 Feb 18 02:21 a.out
-rw-r--r-- 1 root root   108 Feb 18 02:23 cppProg.cpp
-rw-r--r-- 1 root root 59512 Feb 18 04:11 ldLib.log
-rw-r--r-- 1 root root 59512 Feb 18 04:18 ldLib.log.2
lrwxrwxrwx 1 root root    23 Feb 18 04:23 libstdc++.so -> /usr/lib/libstdc++.so.5
-rwxr-xr-x 1 root root 11055 Feb 18 02:22 og++34Comp
-rw-r--r-- 1 root root 21159 Feb 20 00:19 strace.log
-rwxr-xr-x 1 root root 11055 Feb 20 00:20 trcpp2
[root@p208n11 tr]# ldd trcpp2
        linux-vdso64.so.1 =>  (0x00000fff8c800000)
        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 (0x0000000042b20000)
[root@p208n11 tr]# echo $LD_LIBRARY_PATH
/root/tr
[root@p208n11 tr]# pwd
/root/tr
[root@p208n11 tr]# g++34 lstdc++.so cppProg.cpp -o trcpp3
g++34: lstdc++.so: No such file or directory
In file included from /usr/lib/gcc/ppc64-redhat-linux/3.4.6/../../../../include/c++/3.4.6/backward/iostream.h:31,
                 from cppProg.cpp:1:
/usr/lib/gcc/ppc64-redhat-linux/3.4.6/../../../../include/c++/3.4.6/backward/backward_warning.h:32:2: warning: #warning This file includes at least one deprecated or antiquated header. Please consider using one of the 32 headers found in section 17.4.1.2 of the C++ standard. Examples include substituting the <X> header for the <X.h> header for C++ includes, or <iostream> instead of the deprecated header <iostream.h>. To disable this warning use -Wno-deprecated.
[root@p208n11 tr]# g++34 libstdc++.so cppProg.cpp -o trcpp3
In file included from /usr/lib/gcc/ppc64-redhat-linux/3.4.6/../../../../include/c++/3.4.6/backward/iostream.h:31,
                 from cppProg.cpp:1:
/usr/lib/gcc/ppc64-redhat-linux/3.4.6/../../../../include/c++/3.4.6/backward/backward_warning.h:32:2: warning: #warning This file includes at least one deprecated or antiquated header. Please consider using one of the 32 headers found in section 17.4.1.2 of the C++ standard. Examples include substituting the <X> header for the <X.h> header for C++ includes, or <iostream> instead of the deprecated header <iostream.h>. To disable this warning use -Wno-deprecated.
libstdc++.so: could not read symbols: File in wrong format
collect2: ld returned 1 exit status
[root@p208n11 tr]# ll
total 184
-rwxr-xr-x 1 root root 11055 Feb 18 02:21 a.out
-rw-r--r-- 1 root root   108 Feb 18 02:23 cppProg.cpp
-rw-r--r-- 1 root root 59512 Feb 18 04:11 ldLib.log
-rw-r--r-- 1 root root 59512 Feb 18 04:18 ldLib.log.2
lrwxrwxrwx 1 root root    23 Feb 18 04:23 libstdc++.so -> /usr/lib/libstdc++.so.5
-rwxr-xr-x 1 root root 11055 Feb 18 02:22 og++34Comp
-rw-r--r-- 1 root root 21159 Feb 20 00:19 strace.log
-rwxr-xr-x 1 root root 11055 Feb 20 00:20 trcpp2
[root@p208n11 tr]#

I also ran strace over compilation and the strace log files are attached for your reference. Like:
Code:
[root@p208n11 tr]# strace g++34 cppProg.cpp -o trcpp2 2> strace.log
[root@p208n11 tr]# strace g++34 libstdc++.so cppProg.cpp -o trcpp2 2> strace.x.log

Also tried running ldconfig utility, like:
Code:
[root@p208n11 tr]# ldconfig -p > ldLib.log

Created a copy of file ldLib.log as ldLib.log.2 and edited the file ldLib.log.2 to swap positions of libstdc++.so.6 and libstdc++.so.5 and ran the config utility again, like:
Code:
[root@p208n11 tr]# ldconfig -f ldLib.log.2 2> ldconfig-f.log

Got errors logged into file ldconfig-f.log for reference and is attached herewith this post.

Here are few other information, which might be of help:
Code:
[root@p208n11 tr]# uname -a
Linux p208n11.pbm.ihost.com 2.6.32-358.el6.ppc64 #1 SMP Tue Jan 29 11:43:27 EST 2013 ppc64 ppc64 ppc64 GNU/Linux
[root@p208n11 tr]# cat /etc/redhat-release
Red Hat Enterprise Linux Server release 6.4 (Santiago)
[root@p208n11 tr]# g++34 -v
Reading specs from /usr/lib/gcc/ppc64-redhat-linux/3.4.6/specs
Configured with: ../configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info --enable-shared --enable-threads=posix --disable-checking --with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions --enable-languages=c,c++,f77 --disable-libgcj --host=ppc64-redhat-linux
Thread model: posix
gcc version 3.4.6 20060404 (Red Hat 3.4.6-19.el6)
[root@p208n11 tr]# /usr/bin/ldd --version
ldd (GNU libc) 2.12
Copyright (C) 2010 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
Written by Roland McGrath and Ulrich Drepper.

 

8 More Discussions You Might Find Interesting

1. 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

2. 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

3. 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

4. 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

5. 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

6. 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

7. 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

8. 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
All times are GMT -4. The time now is 07:54 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy