- or download this
$ env -i PERL5LIB=.local/lib/perl5 perl -MSybase::Simple
Can't load '.local/lib/perl5/x86_64-linux-thread-multi/auto/Sybase/CTl
+ib/CTlib.so' for module Sybase::CTlib: libsybct_r64.so: cannot open s
+hared object file: No such file or directory at /usr/lib64/perl5/Dyna
+Loader.pm line 193.
...
Compilation failed in require.
BEGIN failed--compilation aborted.
$
- or download this
$ env -i ldd .local/lib/perl5/x86_64-linux-thread-multi/auto/Sybase/CT
+lib/CTlib.so
linux-vdso.so.1 (0x00007ffcebdce000)
...
libcrypt.so.2 => /lib64/libcrypt.so.2 (0x00007f4970fc3000)
/lib64/ld-linux-x86-64.so.2 (0x00007f4971032000)
$
- or download this
#!/usr/bin/perl
...
print $ENV{LD_LIBRARY_PATH};
require Sybase::Simple;
- or download this
$ env -i PERL5LIB=.local/lib/perl5 perl ./do_shell_source.pl
~/sybsdk/DataAccess64/ODBC/lib:~/sybsdk/DataAccess/ODBC/lib:~/sybsdk/O
+CS-20_0/lib:~/sybsdk/OCS-20_0/lib3p64:~/sybsdk/OCS-20_0/lib3p:
...
BEGIN failed--compilation aborted at .local/lib/perl5/Sybase/Simple.pm
+ line 19.
Compilation failed in require at ./do_shell_source.pl line 14.
$
- or download this
#!/usr/bin/perl
...
};
use DDP;
p %ENV;
- or download this
$ env -i PERL5LIB=.local/lib/perl5 perl ./do_shell_source.pl
{
...
SYBROOT "~/sybsdk"
}
$
- or download this
$ cat sybsdk/SYBASE.sh
#
...
PATH="~/sybsdk/tools/bin":$PATH
export PATH
$