|
From: VINCENT <c-v...@ba...> - 2003-04-21 06:23:19
|
On Sunday 20 April 2003 21:57, Adrian McMenamin wrote:
> Can I ask why you built linx as static if you have these libraries workin=
g?
Yes, you can ! ;-)
Links2.1-pre7 (graphical mode) depends on many libs, that are not all prese=
nt=20
on DCLinux-010605. If they are present, I use other libs than theirs (for m=
y=20
own distro that is not bootable/usable for the moment), so it makes=20
conflicts...
> Did you build these libraries yourself?
I've successfully launch an app using a dynamic lib that I build myself=20
(libgcc_s.so.1) :
<------------------------------>
dreamcast:~# ldd clear
libncurses.so.5 =3D> /lib/libncurses.so.5 (0x2957c000)
libgpm.so.1 =3D> /usr/lib/libgpm.so.1 (0x295d5000)
libc.so.6 =3D> /lib/libc.so.6 (0x295eb000)
/lib/ld-linux.so.2 =3D> /lib/ld-linux.so.2 (0x29556000)
libgcc_s.so.1 =3D> not found
dreamcast:~# cp /gdrom/DreamCast/sh4-linux/lib/libgcc_s.so.1 .
dreamcast:~# export LD_LIBRARY_PATH=3D.
dreamcast:~# ldd clear=20
libncurses.so.5 =3D> /lib/libncurses.so.5 (0x2957c000)
libgpm.so.1 =3D> /usr/lib/libgpm.so.1 (0x295d5000)
libc.so.6 =3D> /lib/libc.so.6 (0x295eb000)
libgcc_s.so.1 =3D> ./libgcc_s.so.1 (0x296fd000)
/lib/ld-linux.so.2 =3D> /lib/ld-linux.so.2 (0x29556000)
dreamcast:~# ./clear
<------------------------------>
It works fine !
C=E9dric
PS : I haven't got a BBA, I do tests with the cable coder and CDs... So it =
is=20
not really easy to make tests :(
|