This is the mail archive of the
libstdc++@gcc.gnu.org
mailing list for the libstdc++ project.
Re: newbie questions about using libsdtc++
- From: Benjamin Kosnik <bkoz at redhat dot com>
- To: Byron Amerson <byronea at u dot washington dot edu>
- Cc: libstdc++ at gcc dot gnu dot org
- Date: Mon, 8 Dec 2003 23:33:16 -0600
- Subject: Re: newbie questions about using libsdtc++
- Organization: Red Hat / Chicago
- References: <Pine.A41.4.58.0312080959130.46602@dante02.u.washington.edu>
>1. What is the hey is runtime?
There is no support for libstdc++ as a shared library in gcc-3.3.x. on OS X.
However, you are in luck: current main line has shared library support
for 10.3. BTW, the Mac calls dynamic or shared libraries dylibs. So:
Welcome to Darwin!
sifr:~ bkoz$ cd bld/gcc/powerpc-apple-darwin7.0.0/libstdc++-v3/src/.libs/
sifr:~/bld/gcc/powerpc-apple-darwin7.0.0/libstdc++-v3/src/.libs bkoz$ ls -al libstdc++.*
-rwxr-xr-x 1 bkoz bkoz 5831664 7 Dec 13:10 libstdc++.6.0.0.dylib
-rw-r--r-- 1 bkoz bkoz 5954800 7 Dec 13:10 libstdc++.6.0.0.dylib-master.o
lrwxr-xr-x 1 bkoz bkoz 21 7 Dec 13:10 libstdc++.6.dylib -> libstdc++.6.0.0.dylib
-rw-r--r-- 1 bkoz bkoz 14225428 7 Dec 13:10 libstdc++.a
lrwxr-xr-x 1 bkoz bkoz 21 7 Dec 13:10 libstdc++.dylib -> libstdc++.6.0.0.dylib
lrwxr-xr-x 1 bkoz bkoz 15 7 Dec 13:10 libstdc++.la -> ../libstdc++.la
-rw-r--r-- 1 bkoz bkoz 928 7 Dec 13:10 libstdc++.lai
May I suggest that you use current gcc sources, and configure with
--prefix, and then make and make install. Then, just use the installed shared library.
best,
benjamin