Skip to main content

Could not load module libcobrts64_t.2.so. under AIX

  • February 15, 2013
  • 0 replies
  • 0 views

Problem:

This message is displayed under AIX 5.2 at the compilation that is made with a makefile

Resolution:

This message is displayed because the value of the environment variable LIBPATH is not passed to the make command by operating system .

The temporary solution is to insert before the cob command the line :

<TAB>LIBPATH=$COBDIR/lib;export LIBPATH;\\

example :

all :

          cob -x  prog.cbl

is replaced by :

all :

LIBPATH=$COBDIR/lib;export LIBPATH;\\

cob -x  prog.cbl

Old KB# 2020

0 replies

Be the first to reply!