digitalmars.D - DMD error on fedora 4
- cpunion gmail.com (5/5) Nov 06 2005 [root@localhost ~]# /opt/dmd/bin/dmd
- James Dunne (4/11) Nov 07 2005 As it states, quite simply, the DMD Linux binary does not link to
- cpunion gmail.com (2/13) Nov 07 2005 Thanks.
- =?ISO-8859-1?Q?Anders_F_Bj=F6rklund?= (11/16) Nov 08 2005 The command you might want here is:
/opt/dmd/bin/dmd: error while loading shared libraries: libstdc++.so.5: cannot open shared object file: No such file or directory /usr/lib/libstdc++.so.6 /usr/lib/libstdc++.so.6.0.4
Nov 06 2005
cpunion gmail.com wrote:/opt/dmd/bin/dmd: error while loading shared libraries: libstdc++.so.5: cannot open shared object file: No such file or directory /usr/lib/libstdc++.so.6 /usr/lib/libstdc++.so.6.0.4As it states, quite simply, the DMD Linux binary does not link to libstdc++ version 6 or above. I'd suggest grabbing a copy of a libstdc++ version 5 from Fedora.
Nov 07 2005
In article <dknqmi$2vp0$1 digitaldaemon.com>, James Dunne says...cpunion gmail.com wrote:Thanks./opt/dmd/bin/dmd: error while loading shared libraries: libstdc++.so.5: cannot open shared object file: No such file or directory /usr/lib/libstdc++.so.6 /usr/lib/libstdc++.so.6.0.4As it states, quite simply, the DMD Linux binary does not link to libstdc++ version 6 or above. I'd suggest grabbing a copy of a libstdc++ version 5 from Fedora.
Nov 07 2005
cpunion wrote:/opt/dmd/bin/dmd: error while loading shared libraries: libstdc++.so.5: cannot open shared object file: No such file or directory /usr/lib/libstdc++.so.6 /usr/lib/libstdc++.so.6.0.4The command you might want here is: yum provides libstdc++.so.5 Which on Fedora Core 4 claims it's in: compat-libstdc++-33.i386 3.2.3-47.fc4 base Thus, I installed this oldskool library: yum install compat-libstdc++-33 Or actually, the new DMD RPM I did "required" it. (but is having some problems rebuilding, on GCC4) I like packages. --anders
Nov 08 2005