C++ コードをオープン Solaris OS から Redhat 4 OS に移植しました。このコード スニペットでは、エラーが発生しています。
AsciiFileName = new char [1024];
cout<<"HandleFile is getting called "<<endl;
/// Converting the file name to ascii.
FileName += strFileName;
FileName.ConvertToAscii( AsciiFileName );
/// Get handle to the shared object file.
Handle = dlopen( AsciiFileName, RTLD_LOCAL | RTLD_LAZY );
cout<<"Handle = dlopen( AsciiFileName, RTLD_LOCAL | RTLD_LAZY ); is getting called AsciiFileName"<<AsciiFileName<<endl;
if (!Handle)
{
cout<<"Handle is NULL"<<endl;
cout<<dlerror()<<endl;
exit(EXIT_FAILURE);
私が得ているエラーは次のとおりです。
invalid elf header linux
so ファイルを開くことができません。関連するログは次のとおりです。
Before ProcessSharedObject->IterateOnDir
GCVDirectoryIterator::IterateOnDir:file name :/bin/ls /trnuser1/rmtrain/DevelopmentEnv/Telstra/USM/dat/CnEModules/*.so
GCVDirectoryIterator::IterateOnDir:file opened :/trnuser1/rmtrain/DevelopmentEnv/Telstra/USM/dat/CnEModules/libGCVCore.so
before GCVDirectoryIterator::AddFile
HandleFile is getting called
Handle = dlopen( AsciiFileName, RTLD_LOCAL | RTLD_LAZY ); is getting called AsciiFileName/trnuser1/rmtrain/DevelopmentEnv/Telstra/USM/dat/CnEModules/libGCVCore.so
Handle is NULL
/trnuser1/rmtrain/DevelopmentEnv/Telstra/USM/dat/CnEModules/libGCVCore.so: invalid ELF header