I'm trying to get some programs that have worked for a decade on TC 5, 6 & 7 (32 bit) moved up to TC 14.0 (64 bit) and I'm running into difficulty tracking down these libraries that ldd shows these libraries as 'not found' so my programs won't load:
- libncurses.so.6
- libtinfo.so.6
- libEApi.so.1
I created a symlink so that /lib64 points to /lib so that ld-linux is found. I have also found libncurses
w.so.6, but the old code I'm tasked with getting working doesn't use the wide ncurses. Are any of these available for TC 14, or will I need to try to find their source and hopefully build working copies on my own? He asked, dreading the likely answer.
EDIT: I found libEApi.so.1. I had forgotten that it was a library specific to the hardware platform we're using and I had both 32 and 64 bit versions of the library on a CDROM that came with the device.
I'm also finding things that are hinting to me that TC may have discontinued any support for libncurses in favor of libncursesw. Unfortunately, I'm having terrible luck finding any articles that might help me find out how difficult it will be to port my old projects over from ncurses to ncursesw -- I'm only finding comments that they are generally compatible or something like that.