我正在使用 gcc 4.9.2 交叉编译 armv7hv (gcc-4.9.2_armv7hf_glibc-2.9)。有一个主要的可执行文件和一个带有一个导出函数的库Foo()
。
我的经验是,如果我在该库的函数中抛出异常Foo()
,并尝试立即捕获它,它就会被捕获。
然而如果在该函数中我在堆栈上创建一个抛出 std::Exception 的对象,则它不会被捕获,并且我会得到以下输出并且程序立即终止:
terminate called without an active exception
Aborted
这些是我的编译器调用:
arm-drm-linux-gnueabihf-g++ -fPIC -pipe -ggdb -o MyLib.o -c MyLib.cpp
arm-drm-linux-gnueabihf-g++ -fPIC -pipe -ggdb -o LibraryLoader.o -c LibraryLoader.cpp
arm-drm-linux-gnueabihf-g++ -g3 -ggdb -Wall -fPIC -pipe -isystem /sysroot/usr/local/include\ -fsigned-char -D_USE_EMBEDDED_ -ffunction-sections -fdata-sections -static-libstdc++ -lpthread -ldl -shared -L/sysroot/usr/local/lib MyLib.o LibraryLoader.o -o myLib.so
arm-drm-linux-gnueabihf-g++ -fPIC -pipe -ggdb -o Main.o -c Main.cpp
arm-drm-linux-gnueabihf-g++ -g3 -ggdb -Wall -fPIC -pipe -isystem /sysroot/usr/local/include\ -fsigned-char -D_USE_EMBEDDED_ -ffunction-sections -fdata-sections -static-libstdc++ -lpthread -ldl -L/sysroot/usr/local/lib Main.o -o Main.linux-arm
这是我的代码:
主程序.cpp
#include <iostream>
#include <stdlib.h>
#include <dlfcn.h>
#include <stdio.h>
int main(int argc, char* argv[])
{
std::string sLibname("myLib.so");
std::string sInitFuncName = "Foo";
void *handle = NULL;
long (*func_Initialize)(void*);
char *error;
handle = dlopen(sLibname.c_str(), RTLD_LAZY | RTLD_LOCAL);
if (!handle) {
fputs(dlerror(), stderr);
exit(1);
}
*(void**)(&func_Initialize) = dlsym(handle, sInitFuncName.c_str());
if ((error = dlerror()) != NULL) {
fputs(error, stderr);
exit(1);
}
printf("Call library function 'Foo'\n");
func_Initialize(NULL);
printf("Call library function 'Foo' DONE\n");
dlclose(handle);
return 0;
}
MyLib.hpp
extern "C" {
long DEBMIInitialize();
}
MyLib.cpp
#include "LibraryLoader.hpp"
#include "MyLib.hpp"
#include <stdio.h>
#include <exception>
long Foo()
{
try {
std::exception e;
throw e;
}
catch (std::exception)
{
//This is caught
printf("Caught std::exception\n");
}
try {
LibraryLoader oLibLoader;
oLibLoader.Run();
}
catch (std::exception)
{
//This is not caught
printf("Caught std::exception from ClLibrayLoader\n");
}
return 0;
}
库加载器.hpp
#include <exception>
#include <stdio.h>
class LibraryLoader
{
public:
LibraryLoader() {};
~LibraryLoader() {};
void Run() {
std::exception e;
throw e;
};
};
-O1
编辑:我刚刚注意到,当我添加用于优化的编译器标志(O2
,O3
..)时,也会捕获(第二个)异常。
答案1
也许您应该使用 new() 创建异常,因为它在“MyLib.cpp::Foo()”中是本地的。