From: David E. <de...@us...> - 2008-10-05 19:22:25
|
irado wrote: > configured/compiled/install WITHOUT errors or warnings. htcobrun > is there but htcobol disappear (never made, at all). > > version 0.62 and 0.63 - yes, I am trying a lot, since long. > > Question: HOW can I have the compiler done? The default configure build prefix is '/usr/local'. On some newer system these paths (/usr/local/bin and /usr/local/lib) are not setup by default. First, verify that TC was installed. #ls -l "/usr/local/bin/htcob*" #ls -l "/usr/local/lib/libhtcob*" If TC was installed, you can do one of the following. Add '/usr/local/bin' to your PATH, and '/usr/local/lib' to the dynamic linker (/sbin/ldconfig) library paths. Or remove and re-build TC with the '/usr' confugure prefix. #./configure --prefix=/usr #make #make install Run the dynamic linker configure (see man ldconfig), to update the library cache. > system: Slackware Linux 12.1 BTW, I have added a Slackware build script to CVS ('info/slackware/SlackBuild'). Should work on 'Slackware 12.1', with minor modifications, using the TC 0.63 sources. Or you can wait for TC 0.64, which should be out by the end of October, I hope. Hope this helps. |