In the year 2017, of the month of January, on the 9th day, Peter Flynn wrote: > There are copies of libecore.so and libecore_file.so (and other > libecore*) in /usr/lib/i386-linux-gnu/, all version 1.8.6 whereas EFL is > trying to create 1.18.99 There's also something called libecore1 which > seems to be EFL-specific.
Yep, that'd be the problem. So it was what I initially suspected; stale libraries. As Rasterdude says, you'll need to nuke 'em. > > Another check would be to run the command "ldd > > /usr/local/lib/libecore_file.so". > > That could provide a clue as to the issue. > > Not a whole lot, unfortunately. > > > $ ldd /usr/local/lib/libecore_file.so ... > > libeina.so.1 => /usr/lib/i386-linux-gnu/libeina.so.1 (0xb7714000) > > libeo.so.1 => /usr/lib/i386-linux-gnu/libeo.so.1 (0xb7701000) > > libecore.so.1 => /usr/lib/i386-linux-gnu/libecore.so.1 (0xb76c9000) > > libecore_con.so.1 => /usr/lib/i386-linux-gnu/libecore_con.so.1 > > (0xb7696000) ... > > libeet.so.1 => /usr/lib/i386-linux-gnu/libeet.so.1 (0xb71b9000) Actually, it highlights exactly your problem. The above links are stale. You'll need to clear these libraries out. They're almost certainly part of existing installed packages. Search for which package they belong to, i.e "dpkg -S libecore.so.1" or "dpkg -S /usr/lib/i386-linux-gnu/libecore.so.1" if you want to be exacting. Uninstall any matching packages, and anything that depends on them. Then try your EFL compile/install. Cheers, dave.k ------------------------------------------------------------------------------ Developer Access Program for Intel Xeon Phi Processors Access to Intel Xeon Phi processor-based developer platforms. With one year of Intel Parallel Studio XE. Training and support from Colfax. Order your platform today. http://sdm.link/xeonphi _______________________________________________ enlightenment-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/enlightenment-users
