This is the mail archive of the libstdc++@gcc.gnu.org mailing list for the libstdc++ project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: newbie questions about using libsdtc++


>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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]