- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
As far as I know, in the forthcoming release of Ubuntu (9.10) they dropped support for libstdc++ which is still required by Intel compilers
Link Copied
- « Previous
-
- 1
- 2
- Next »
25 Replies
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
If the computer did not have internet access, how did the 'wget' command succeed? Did you do the wget on an internet connected computer and then bring over the package to the target system?
In my article http://software.intel.com/en-us/articles/using-intel-compilers-for-linux-with-ubuntu/ I used apt-get instead of wget. But wget does have the advantage of fully specifying the source URL.
Thanks for the pointer to the web article.
ron
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
If you mean that libstdc++.so.5 is no longer installed unless specifically requested, that's believable. If you mean that Ubuntu is dropping support for g++, not.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi,
I did follow the instruction on this web page but I run tinto problems on 64-bit:
icpc --help runs, but on compile it calls mcpcom:
/opt/intel/Compiler/11.1/072/bin/intel64/mcpcom: error while loading shared libraries: libstdc++.so.5: cannot open shared object file: No such file or directory
OK, looking here:
$ ls -la /usr/lib32/libstdc++.so.5*
lrwxrwxrwx 1 root root 18 2010-05-03 16:14 /usr/lib32/libstdc++.so.5 -> libstdc++.so.5.0.7
-rw-r--r-- 1 root root 737112 2010-04-30 18:02 /usr/lib32/libstdc++.so.5.0.7
All there as described on web, anyway:
$ strace /opt/intel/Compiler/11.1/072/bin/intel64/mcpcom 2>&1 | grep libstdc++.so.5
open("/opt/intel/Compiler/11.1/072/lib/intel64/libstdc++.so.5", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/opt/intel/Compiler/11.1/072/ipp/em64t/sharedlib/libstdc++.so.5", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/opt/intel/Compiler/11.1/072/mkl/lib/em64t/libstdc++.so.5", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/opt/intel/Compiler/11.1/072/tbb/intel64/cc4.1.0_libc2.4_kernel2.6.16.21/lib/libstdc++.so.5", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/lib/tls/x86_64/libstdc++.so.5", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/lib/tls/libstdc++.so.5", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/lib/x86_64/libstdc++.so.5", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/lib/libstdc++.so.5", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/tls/x86_64/libstdc++.so.5", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/tls/libstdc++.so.5", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/x86_64/libstdc++.so.5", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/libstdc++.so.5", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/lib/x86_64-linux-gnu/tls/x86_64/libstdc++.so.5", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/lib/x86_64-linux-gnu/tls/libstdc++.so.5", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/lib/x86_64-linux-gnu/x86_64/libstdc++.so.5", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/lib/x86_64-linux-gnu/libstdc++.so.5", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/x86_64-linux-gnu/tls/x86_64/libstdc++.so.5", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/x86_64-linux-gnu/tls/libstdc++.so.5", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/x86_64-linux-gnu/x86_64/libstdc++.so.5", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/x86_64-linux-gnu/libstdc++.so.5", O_RDONLY) = -1 ENOENT (No such file or directory)
writev(2, [{"/opt/intel/Compiler/11.1/072/bin"..., 47}, {": ", 2}, {"error while loading shared libra"..., 36}, {": ", 2}, {"libstdc++.so.5", 14}, {": ", 2}, {"cannot open shared object file", 30}, {": ", 2}, {"No such file or directory", 25}, {"\n", 1}], 10/opt/intel/Compiler/11.1/072/bin/intel64/mcpcom: error while loading shared libraries: libstdc++.so.5: cannot open shared object file: No such file or directory
So it doesn't look into /usr/lib32 any more. What happens here?
Thanks,
opelx
I did follow the instruction on this web page but I run tinto problems on 64-bit:
icpc --help runs, but on compile it calls mcpcom:
/opt/intel/Compiler/11.1/072/bin/intel64/mcpcom: error while loading shared libraries: libstdc++.so.5: cannot open shared object file: No such file or directory
OK, looking here:
$ ls -la /usr/lib32/libstdc++.so.5*
lrwxrwxrwx 1 root root 18 2010-05-03 16:14 /usr/lib32/libstdc++.so.5 -> libstdc++.so.5.0.7
-rw-r--r-- 1 root root 737112 2010-04-30 18:02 /usr/lib32/libstdc++.so.5.0.7
All there as described on web, anyway:
$ strace /opt/intel/Compiler/11.1/072/bin/intel64/mcpcom 2>&1 | grep libstdc++.so.5
open("/opt/intel/Compiler/11.1/072/lib/intel64/libstdc++.so.5", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/opt/intel/Compiler/11.1/072/ipp/em64t/sharedlib/libstdc++.so.5", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/opt/intel/Compiler/11.1/072/mkl/lib/em64t/libstdc++.so.5", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/opt/intel/Compiler/11.1/072/tbb/intel64/cc4.1.0_libc2.4_kernel2.6.16.21/lib/libstdc++.so.5", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/lib/tls/x86_64/libstdc++.so.5", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/lib/tls/libstdc++.so.5", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/lib/x86_64/libstdc++.so.5", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/lib/libstdc++.so.5", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/tls/x86_64/libstdc++.so.5", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/tls/libstdc++.so.5", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/x86_64/libstdc++.so.5", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/libstdc++.so.5", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/lib/x86_64-linux-gnu/tls/x86_64/libstdc++.so.5", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/lib/x86_64-linux-gnu/tls/libstdc++.so.5", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/lib/x86_64-linux-gnu/x86_64/libstdc++.so.5", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/lib/x86_64-linux-gnu/libstdc++.so.5", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/x86_64-linux-gnu/tls/x86_64/libstdc++.so.5", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/x86_64-linux-gnu/tls/libstdc++.so.5", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/x86_64-linux-gnu/x86_64/libstdc++.so.5", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/usr/lib/x86_64-linux-gnu/libstdc++.so.5", O_RDONLY) = -1 ENOENT (No such file or directory)
writev(2, [{"/opt/intel/Compiler/11.1/072/bin"..., 47}, {": ", 2}, {"error while loading shared libra"..., 36}, {": ", 2}, {"libstdc++.so.5", 14}, {": ", 2}, {"cannot open shared object file", 30}, {": ", 2}, {"No such file or directory", 25}, {"\n", 1}], 10/opt/intel/Compiler/11.1/072/bin/intel64/mcpcom: error while loading shared libraries: libstdc++.so.5: cannot open shared object file: No such file or directory
So it doesn't look into /usr/lib32 any more. What happens here?
Thanks,
opelx
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
For 64-bits, you need to install the 32-bit AND the 64-bit versions of the library. to get a copy of the .deb packages for both libraries (from a PPA in Ubuntu's Launchpad server), run the following command in a (bash) terminal:
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
works now, thanks for providing the ppa
opelx
opelx
Reply
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- « Previous
-
- 1
- 2
- Next »