Welcome, Guest. Please login or register. Did you miss your activation email?

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Topics - pointercrash()

Pages: [1]
1
General discussions / Can't load libsfml-system.so.1.4 on 64 bit linux
« on: January 07, 2009, 10:38:10 pm »
Hey
I just tried to install sfml  on my linux system (fedora 10, x64).
I just looked into the Linux install tutorial.

After i downloaded some file, extracted it and called make install as root, I tried to compile the example on the tutorial page, but it said something of "sfml-system not found; incompatible versions ignored" while compiling.

I thought it is a issue with 64 bit. Seams to be build for 32 bit:
Code: [Select]
make clean
make -j8
make install

no problem

than i compiled the example program.
When starting it i just can see:
./clock: error while loading shared libraries: libsfml-system.so.1.4: cannot open shared object file: No such file or directory

i copied the .so.1.4 and a link named libsfml-system.so.1.4 to every directory named lib I was able to find (usr/local/lib /usr/lib /lib/ /usr/local/lib64 /usr/lib64/ /lib64/) and recompiled many times. Nothing chanced.

What is my mistake? How can i solve this?

P.s.
Code: [Select]
$ ldd ./clock
linux-vdso.so.1 =>  (0x00007fff24dfe000)
libsfml-system.so.1.4 => not found
libstdc++.so.6 => /usr/lib64/libstdc++.so.6 (0x0000003a9a800000)
libm.so.6 => /lib64/libm.so.6 (0x0000000000602000)
libgcc_s.so.1 => /lib64/libgcc_s.so.1 (0x0000003a98c00000)
libc.so.6 => /lib64/libc.so.6 (0x00007f5a1c8c0000)


edit: sorry for bad forum; I'm a bit pissed and use to much tabs :/

Pages: [1]